mirror of
https://github.com/koush/scrypted.git
synced 2026-02-03 14:13:28 +00:00
18 lines
533 B
JSON
18 lines
533 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"module": "NodeNext",
|
|
"target": "esnext",
|
|
"noImplicitAny": 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/**/*",
|
|
],
|
|
} |