Files
scrypted/server/tsconfig.json
Koushik Dutta 1c894561a0
Some checks failed
Build SDK / Build (push) Has been cancelled
tsconfig: remove redundant strict flags covered by 'strict: true'
The following flags are implied by 'strict: true' and are redundant:
- strictNullChecks
- strictFunctionTypes
- strictBindCallApply
- strictPropertyInitialization
- noImplicitThis
- alwaysStrict
- noImplicitAny

Kept explicitly:
- noFallthroughCasesInSwitch
- noUncheckedIndexedAccess
- noImplicitOverride
- noImplicitReturns
2026-04-02 14:59:37 -07:00

22 lines
683 B
JSON

{
"compilerOptions": {
"declaration": true,
"module": "NodeNext",
"target": "esnext",
"strict": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noImplicitReturns": 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/**/*",
],
}