-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
33 lines (33 loc) · 1002 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
{
"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": "./things/advanced-coffee-machine/http/ts" },
{ "path": "./things/data-schema-thing/http/ts" }
],
"include": [
/** specifically nothing here */
],
"exclude": []
}