-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
tsconfig.json
34 lines (34 loc) · 889 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
{
"compilerOptions": {
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"declaration": false,
"noImplicitAny": true,
"strictNullChecks": true,
"jsx": "react-native",
"suppressImplicitAnyIndexErrors": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"noUnusedLocals": true,
"allowJs": true,
"paths": {
"~backend/*": ["./src/backend/*"],
"~frontend/*": ["./src/frontend/*"],
"~images/*": ["./images/*"],
},
"module": "commonjs",
"forceConsistentCasingInFileNames": true,
"target": "es2017",
"incremental": true,
"outDir": "./lib",
"lib": ["dom", "es5", "scripthost", "es2015", "es2016", "es2017"]
},
"include": [
"src/backend/**/*.ts",
"src/frontend/**/*.ts",
"src/desktop/**/*.ts",
"typings/*.d.ts"
],
"exclude": ["node_modules"]
}