Files
scrypted/server/tsconfig.json
2023-03-20 17:18:18 -07:00

17 lines
489 B
JSON

{
"compilerOptions": {
"declaration": true,
"module": "commonjs",
"target": "esnext",
"noImplicitAny": true,
"outDir": "./dist",
"esModuleInterop": true,
// skip error: Interface 'WebGL2RenderingContext' incorrectly extends interface 'WebGL2RenderingContextBase'.
// https://github.com/tensorflow/tfjs/issues/4201
"skipLibCheck": true,
"sourceMap": true
},
"include": [
"src/**/*"
],
}