-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
48 lines (48 loc) · 1.56 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
{
"compilerOptions": {
"baseUrl": "./",
"target": "es2015",
"sourceMap": true,
"esModuleInterop": true,
"noEmitHelpers": true,
"importHelpers": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"removeComments": true,
"noUnusedLocals": true,
"noImplicitReturns": false,
"skipLibCheck": true,
"jsx": "react",
"lib": [ "dom", "es7", "es6", "es2015" ],
"typeRoots": [ "node_modules/@types" ],
"outDir": "./dist",
"types": [ "node", "electron", "jest" ],
"paths": {
"~util": [ "util/index" ],
"~module/*": [ "module/*" ],
"~model/*": [ "model/*" ],
"~config": [ "config/index" ],
"~component/*": [ "assets/component/*" ],
"~service": [ "assets/service" ],
"~cModule/*": [ "assets/module/*" ],
"~cModel/*": [ "assets/model/*" ],
"~css/*": [ "assets/css" ],
"~assets/*": [ "assets/*" ],
"~image/*": [ "assets/image/*" ],
"~hook/*": [ "assets/hook/*" ],
"~test/*": [ "test/*" ]
}
},
"exclude": [
"node_modules",
"**/*.test.ts"
]
}