33 lines
675 B
JSON
33 lines
675 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"lib": [
|
|
"es6",
|
|
"es7"
|
|
],
|
|
"allowJs": false,
|
|
|
|
"sourceMap": false,
|
|
"outDir": "lib",
|
|
|
|
"declaration": true,
|
|
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"allowUnreachableCode": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|