forked from zwave-js/node-zwave-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
53 lines (53 loc) · 1.15 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
49
50
51
52
53
{
"compilerOptions": {
"plugins": [
{
"name": "@fimbul/mithotyn",
"displayErrorsAsWarnings": true
}
],
"composite": true,
"declaration": true,
"declarationMap": true,
// To enable Babel support
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitThis": true,
"removeComments": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": false,
"importsNotUsedAsValues": "error",
"sourceMap": true,
"inlineSourceMap": false,
"stripInternal": true,
"target": "es2018",
"skipLibCheck": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"watch": false, // true breaks CI scripts
"pretty": true,
"types": [
"node",
"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"
]
}