-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
52 lines (52 loc) · 1.15 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
{
"compilerOptions": {
// ===== development
"sourceMap": true,
// ===== language features
"jsx": "preserve",
"moduleResolution": "node",
"module": "esnext",
"experimentalDecorators": true,
// ===== transpiling
"target": "esnext",
"importHelpers": true, // importing helper functions from tslib
"noEmitHelpers": true, // disable emitting inline helper function
"noErrorTruncation": true,
"esModuleInterop": true,
"allowJs": true,
// ===== typechecking
"noUnusedLocals": true,
"allowSyntheticDefaultImports": true,
"noImplicitThis": true,
"skipDefaultLibCheck": true,
// ===== types
"lib": [
"es6",
"dom",
// "es2016",
"es2017.object"
],
"types": [
"webpack-env",
"node",
"cypress",
"chai"
],
// ===== project settings
"rootDir": "./",
"baseUrl": "./src",
"paths": {
"~/*": [
"./*"
]
},
"plugins": [
{
}
]
},
"exclude": [
"bin",
"node_modules",
]
}