Spaces:
Running
on
L40S
Running
on
L40S
File size: 1,215 Bytes
4450790 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
{
"compilerOptions": {
"target": "es2019",
"module": "ESNext",
// "typeRoots": [
// "./ts/typings",
// ],
"baseUrl": "./",
"paths": {
"typings/*": ["src_web/typings/*"],
"rgthree/common/*": ["src_web/common/*"],
"node_modules": ["node_modules/*"],
"scripts/*": ["src_web/scripts_comfy/*"],
},
"outDir": "web/",
"removeComments": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"alwaysStrict": true,
// "noUnusedLocals": true,
// "noUnusedParameters": true,
"exactOptionalPropertyTypes": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"allowUnusedLabels": true,
"skipLibCheck": true,
},
"include": [
"src_web/*.ts", "src_web/**/*.ts", "src_web/typings/index.d.ts",
],
"exclude": [
"**/*.spec.ts",
"**/*.d.ts",
"node_modules/**/*.ts"
]
}
|