-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtsconfig.base.json
48 lines (42 loc) · 988 Bytes
/
tsconfig.base.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
{
"compilerOptions": {
"baseUrl": ".",
"outDir": "./build",
"rootDir": ".",
"sourceMap": true,
"strictNullChecks": true,
"incremental": true,
"noErrorTruncation": true,
"allowJs": true,
"checkJs": true,
"allowSyntheticDefaultImports": true,
"jsx": "preserve",
"target": "esnext",
"module": "esnext",
"lib": [ "dom", "esnext" ],
"declaration": true,
"declarationMap": true,
"composite": true,
"emitDeclarationOnly": true,
"isolatedModules": true,
/* Strict Type-Checking Options */
"strict": true,
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
/* Module Resolution Options */
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"typeRoots": [ "./node_modules/@types" ],
"types": [],
/** Skip lib check */
"skipLibCheck": true,
},
"exclude": [
"node_modules"
]
}