-
-
Notifications
You must be signed in to change notification settings - Fork 97
/
tsconfig.json
28 lines (28 loc) · 835 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
{
"include": ["src/**/*", "typings"],
"compilerOptions": {
"baseUrl": "./",
"paths": {},
/* Strict Type-Checking Options */
"strict": true,
/* Others */
"lib": ["dom", "es2015", "es2016.array.include"],
"types": ["jest"],
"outDir": "out/", // target for compiled files
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"declaration": false, // emit declarations
"importHelpers": false, // importing helper functions from tslib
"noEmitHelpers": true, // disable emitting inline helper functions
"noEmitOnError": true,
// "noUnusedLocals": true,
"pretty": true,
"removeComments": true,
"sourceMap": true,
"stripInternal": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true
}
}