mirror of
https://github.com/koush/scrypted.git
synced 2026-05-06 06:00:29 +01:00
21 lines
644 B
JSON
21 lines
644 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"module": "NodeNext",
|
|
"target": "esnext",
|
|
"noImplicitAny": true,
|
|
"alwaysStrict": true,
|
|
"strictBindCallApply": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "NodeNext",
|
|
// skip error: Interface 'WebGL2RenderingContext' incorrectly extends interface 'WebGL2RenderingContextBase'.
|
|
// https://github.com/tensorflow/tfjs/issues/4201
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
],
|
|
} |