1
|
{
|
2
|
"compilerOptions": {
|
3
|
"target": "es5",
|
4
|
"module": "commonjs",
|
5
|
"lib": [
|
6
|
"es2015"
|
7
|
],
|
8
|
"declaration": true,
|
9
|
"sourceMap": true,
|
10
|
"outDir": "./dist",
|
11
|
"importHelpers": true,
|
12
|
"strict": true,
|
13
|
"noImplicitAny": true,
|
14
|
"strictNullChecks": true,
|
15
|
"strictFunctionTypes": true,
|
16
|
"strictPropertyInitialization": true,
|
17
|
"noImplicitThis": true,
|
18
|
"alwaysStrict": true,
|
19
|
"noUnusedLocals": true,
|
20
|
"noUnusedParameters": true,
|
21
|
"noImplicitReturns": true,
|
22
|
"noFallthroughCasesInSwitch": true,
|
23
|
"types": [
|
24
|
"node"
|
25
|
],
|
26
|
"esModuleInterop": true
|
27
|
}
|
28
|
}
|