-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
39 lines (35 loc) · 843 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
{
"compileOnSave": true,
"compilerOptions": {
// do not compile anything, this file is just to configure type checking
// the compilation is configured in tsconfig.build.json
"noEmit": true,
// check JS files, but do not compile them => tsconfig.build.json
"allowJs": true,
"checkJs": true,
"noEmitOnError": true,
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./build/",
"removeComments": false,
"jsx": "react",
"strict": true,
"importsNotUsedAsValues": "error",
// enable the new reflection API
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"sourceMap": false,
"target": "es2018"
},
"include": [
"**/*.ts"
],
"exclude": [
"build/**",
"node_modules/**",
"admin/**"
]
}