-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 919 Bytes
/
tsconfig.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
{
"compilerOptions": {
"target": "ES2022",
"checkJs": true,
"allowJs": true,
// "outFile": "out/compiled.js",
"module": "es6",
"esModuleInterop": true,
"noImplicitAny": true,
"noPropertyAccessFromIndexSignature": false,
"noImplicitOverride": true,
"incremental": true,
"skipLibCheck": true,
"strictFunctionTypes": true,
"moduleResolution": "bundler",
"sourceMap": true,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"useUnknownInCatchVariables": true,
"strictPropertyInitialization": true,
"outDir": "./dist",
"declaration": true,
"allowSyntheticDefaultImports": true,
"exactOptionalPropertyTypes": true,
},
}