-
Notifications
You must be signed in to change notification settings - Fork 79
/
tsconfig.json
44 lines (44 loc) · 1.44 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
{
"compilerOptions": {
"target": "es6",
"lib": ["dom"],
"skipLibCheck": false,
"module": "commonjs",
"outDir": "dist",
"strict": true,
"composite": true,
"incremental": true,
"sourceMap": true,
"noImplicitReturns": true,
"removeComments": true,
"noLib": false,
"preserveConstEnums": true,
"experimentalDecorators": true,
"declaration": true,
"esModuleInterop": true,
"moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,
"resolveJsonModule": false,
"skipDefaultLibCheck": false,
"allowJs": false,
"strictNullChecks": true
},
"references": [
{ "path": "./packages/binding-coap" },
{ "path": "./packages/binding-file" },
{ "path": "./packages/binding-http" },
{ "path": "./packages/binding-mbus" },
{ "path": "./packages/binding-modbus" },
{ "path": "./packages/binding-mqtt" },
{ "path": "./packages/binding-netconf" },
{ "path": "./packages/binding-opcua" },
{ "path": "./packages/binding-websockets" },
{ "path": "./packages/cli" },
{ "path": "./packages/core" },
{ "path": "./packages/td-tools" },
{ "path": "./packages/examples" }
],
"include": [
/** specifically nothing here */
],
"exclude": []
}