forked from AlCalzone/node-tradfri-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
40 lines (39 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
40
{
"compileOnSave": true,
"compilerOptions": {
"plugins": [
{
"name": "@fimbul/mithotyn",
"displayErrorsAsWarnings": true
}
],
"declaration": true,
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"outDir": "build/",
"removeComments": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": false,
"inlineSourceMap": false,
"stripInternal": true,
"target": "es2015",
"watch": false, // true breaks circleci
"skipLibCheck": true, // Skip checking node_modules
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictPropertyInitialization": true,
"strictNullChecks": true
},
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts",
"build/**",
"node_modules/"
]
}