2019-02-09 19:09:04 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
2020-02-05 21:21:51 +01:00
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": false,
|
|
|
|
"sourceMap": false,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"rootDir": "./src",
|
|
|
|
"removeComments": true,
|
|
|
|
"strict": true,
|
2019-02-09 19:09:04 +01:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
2020-02-05 21:21:51 +01:00
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
// "noUnusedLocals": true,
|
|
|
|
// "noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"forceConsistentCasingInFileNames": true
|
2019-02-09 19:09:04 +01:00
|
|
|
},
|
|
|
|
"include": [
|
2020-02-05 21:21:51 +01:00
|
|
|
"./src"
|
2019-02-09 19:09:04 +01:00
|
|
|
]
|
|
|
|
}
|