-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.json
More file actions
43 lines (43 loc) · 810 Bytes
/
tsconfig.json
File metadata and controls
43 lines (43 loc) · 810 Bytes
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
{
"compilerOptions": {
"lib": [
"ES2020",
"ES2020.Promise",
"ES2020.String",
"ES2020.BigInt",
"DOM",
"DOM.Iterable"
],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "preserve",
"skipLibCheck": true,
"resolveJsonModule": true,
"target": "ES2020",
"useUnknownInCatchVariables": true,
"strict": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./*"
],
"@/*": [
"./src/*"
]
},
"allowImportingTsExtensions": true,
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"incremental": true,
"module": "esnext",
"moduleResolution": "node"
},
"include": [
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
}