Files
scrypted/server/tsconfig.json
2025-03-12 09:46:28 -07:00

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/**/*",
],
}