-
Notifications
You must be signed in to change notification settings - Fork 6
/
tsconfig.json
38 lines (38 loc) · 893 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
{
"extends": "./config/tsconfig.strict", // also available: "./config/tsconfig.strict"
"compilerOptions": {
"target": "es6",
"outDir": "build/main",
"rootDir": "src",
"moduleResolution": "node",
"module": "commonjs",
"declaration": true,
"importHelpers": true,
"inlineSourceMap": true,
"forceConsistentCasingInFileNames": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"downlevelIteration": true,
"listFiles": false,
"traceResolution": false,
"pretty": true,
"noImplicitAny": false,
"lib" : [
"es6"
],
"types" : [
"node"
],
"baseUrl": ".", // required for "paths"
"paths": {
"typedeck": ["src/index.ts"] // write tests without relative paths
}
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules/**"
],
"compileOnSave": false
}