-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
tsconfig.perf.json
47 lines (45 loc) · 1.66 KB
/
tsconfig.perf.json
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
47
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": false,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": false,
"incremental": false, // 🔴
"noImplicitAny": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"strictFunctionTypes": true,
"forceConsistentCasingInFileNames": true,
"strictNullChecks": true,
"noUncheckedIndexedAccess": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
// "baseUrl": ".",
"typeRoots": ["src/typings"],
"types": [],
"paths": {
// overrides
"nsfwjs": ["./src/typings/nsfwjs.d.ts"],
// emptied
"typescript": ["./src/typings/empty-types.d.ts"],
"webgl2": ["./src/typings/empty-types.d.ts"],
"@tensorflow/tfjs": ["./src/typings/empty-types.d.ts"],
"@types/webgl": ["./src/typings/empty-types.d.ts"],
"@types/webgl-ext": ["./src/typings/empty-types.d.ts"]
},
// -------------// -------------
// /* specific to base */ "tsBuildInfoFile": ".tsbuildinfo",
/* specific to base */ "noEmit": true
},
// this file will be created by CushyStudio itself
// when it runs for the first time
// it will allow to only see errors in decks you either
// MAINTAIN or are CURRENTLY WORKING ON
"extends": "./tsconfig.custom.json"
}