forked from InteropIO/rest-config-example-node-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (35 loc) · 837 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
{
"compilerOptions": {
"noImplicitAny": true,
"sourceMap": true,
"module": "CommonJS",
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"declaration": false,
"target": "ES5",
"pretty": true,
"strict": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"removeComments": true,
"lib": [
"dom",
"es5",
"es6",
"scripthost",
"es2015.promise",
"es2015.symbol"
]
},
"include": [
"./src/index.ts",
],
"exclude": [
"node_modules",
"dist"
]
}