-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.json
42 lines (42 loc) · 832 Bytes
/
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
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"experimentalDecorators": true,
"noLib": false,
"jsx": "react",
"outDir": "dist",
"noUnusedLocals": true,
"types": [
"node"
],
"typeRoots": [
"node_modules/@types"
],
"lib": [
"dom",
"es2015",
"esnext.asynciterable"
],
"baseUrl": "./src",
"paths": {
"utils": ["utils"],
"views": ["views"],
"components": ["components"],
"service": ["service"],
"stores": ["stores"]
}
},
"parcelTsPluginOptions": {
// If true type-checking is disabled
"transpileOnly": true
},
"exclude": [
"node_modules",
"static"
]
}