forked from zwave-js/node-zwave-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (31 loc) · 844 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
{
"extends": "@tsconfig/node12/tsconfig.json",
"compilerOptions": {
"composite": true,
"declaration": true,
"declarationMap": true,
"moduleResolution": "node",
// To enable Babel support
"allowSyntheticDefaultImports": true,
"noEmitOnError": true,
"removeComments": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": false,
"importsNotUsedAsValues": "error",
"sourceMap": true,
"inlineSourceMap": false,
"stripInternal": true,
"watch": false, // true breaks CI scripts
"pretty": true,
"types": ["node", "jest", "jest-extended"],
"noErrorTruncation": true
},
"include": [
"packages/**/src/**/*.ts",
"packages/**/maintenance/**/*.ts",
"packages/*/gulpfile.ts",
"maintenance/**/*.ts",
"test/**/*.ts"
],
"exclude": ["**/build/**", "node_modules/**", "packages/**/node_modules"]
}