forked from eclipse-thingweb/node-wot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
49 lines (49 loc) · 1.7 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
{
"compilerOptions": {
"target": "es6",
"lib": ["dom"],
"skipLibCheck": false,
"module": "commonjs",
"outDir": "dist",
"alwaysStrict": true,
"strict": false,
"composite": true,
"incremental": true,
"sourceMap": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"removeComments": true,
"noLib": false,
"preserveConstEnums": true,
"experimentalDecorators": true,
"declaration": true,
"esModuleInterop": true,
"strictFunctionTypes": false,
"moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,
"resolveJsonModule": false,
"noStrictGenericChecks": false,
"noImplicitThis": true,
"skipDefaultLibCheck": false,
"allowJs": false
},
"references": [
{ "path": "./packages/binding-coap" },
{ "path": "./packages/binding-file" },
/*{ "path": "./packages/binding-firestore" }, Disabled see https://github.com/eclipse/thingweb.node-wot/issues/827*/
{ "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": []
}