Files
scrypted/server/tsconfig.json
2026-04-02 13:32:51 -07:00

22 lines
676 B
JSON

{
"compilerOptions": {
"declaration": true,
"module": "NodeNext",
"target": "esnext",
"noImplicitAny": true,
"alwaysStrict": true,
"strictBindCallApply": true,
"noFallthroughCasesInSwitch": true,
"noImplicitThis": 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/**/*",
],
}