-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
44 lines (44 loc) · 1.3 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"compilerOptions": {
"strict": true,
"alwaysStrict": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": false,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowArbitraryExtensions": false,
"allowImportingTsExtensions": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"rootDir": ".",
"typeRoots": ["./node_modules/@types"],
"declaration": true,
"declarationDir": "./dist/types",
"declarationMap": true,
"emitDeclarationOnly": true,
"newLine": "lf",
"preserveConstEnums": true,
"removeComments": false,
"sourceMap": true,
"allowJs": false,
"allowSyntheticDefaultImports": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": ["ESNext", "DOM"],
"moduleDetection": "force",
"target": "ESNext",
"composite": true,
"tsBuildInfoFile": "./dist/tsconfig.build.tsbuildinfo",
"noErrorTruncation": true,
"skipLibCheck": false,
"useDefineForClassFields": true
}
}