-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
57 lines (57 loc) · 1.52 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"display": "UAH",
"compilerOptions": {
"lib": [
"ESNext"
],
"typeRoots": [
"@types/node",
"@uah/server"
],
"strict": true,
"noEmit": true,
"allowJs": false,
"composite": false,
"incremental": true,
"isolatedModules": false,
"skipLibCheck": false,
"noEmitHelpers": true,
"noEmitOnError": false,
"removeComments": true,
"preserveSymlinks": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"noResolve": false,
"allowUmdGlobalAccess": false,
"importHelpers": false,
"downlevelIteration": false,
"experimentalDecorators": false,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"noFallthroughCasesInSwitch": false,
"declaration": false,
"newLine": "lf",
"noUnusedLocals": true,
"alwaysStrict": false,
"esModuleInterop": true,
"noImplicitThis": true,
"noImplicitAny": true,
"noImplicitReturns": false,
"emitDeclarationOnly": false,
"jsx": "preserve",
"module": "ESNext",
"target": "ESNext",
"moduleDetection": "force",
"useDefineForClassFields": true,
"exactOptionalPropertyTypes": false,
"forceConsistentCasingInFileNames": true,
"assumeChangesOnlyAffectDirectDependencies": false,
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"allowImportingTsExtensions": true,
"resolvePackageJsonExports": true,
"resolvePackageJsonImports": true,
"allowArbitraryExtensions": false,
"strictPropertyInitialization": true
}
}