-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig2.json
52 lines (52 loc) · 1 KB
/
tsconfig2.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
{
"compileOnSave": false,
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"noImplicitAny": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"charset": "utf8",
"allowJs": true,
"jsx": "react",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"importHelpers": true,
"resolveJsonModule": true,
"baseUrl": ".",
"typeRoots": [
"./node_modules/@types/",
"./@types/"
],
"paths": {
"*": [
"*"
],
"@server/*": [
"server/*"
],
"@client/*": [
"client/*"
],
"@utils/*": [
"utils/*"
],
"@config": [
"config"
]
},
"lib": [
"dom",
"es2015",
"es2016",
"es2017"
]
}
}