2018-12-21 10:17:54 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2015",
|
|
|
|
"module": "commonjs",
|
|
|
|
"outDir": "./dist",
|
|
|
|
"rootDir": "./",
|
|
|
|
"types": [
|
|
|
|
"node"
|
|
|
|
],
|
2018-12-26 10:37:09 +01:00
|
|
|
"allowJs": false,
|
2018-12-21 10:17:54 +01:00
|
|
|
"strict": false,
|
2018-12-28 16:53:54 +01:00
|
|
|
"noImplicitAny": true,
|
2018-12-28 17:55:07 +01:00
|
|
|
"strictNullChecks": true,
|
2018-12-26 10:37:09 +01:00
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictBindCallApply": true,
|
2018-12-29 02:35:57 +01:00
|
|
|
"strictPropertyInitialization": true,
|
2018-12-28 17:55:07 +01:00
|
|
|
"noImplicitThis": true,
|
|
|
|
"alwaysStrict": true,
|
2018-12-21 10:17:54 +01:00
|
|
|
"esModuleInterop": true
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
2018-12-26 06:25:33 +01:00
|
|
|
"**/*.spec.ts",
|
|
|
|
"node_modules/**/*"
|
2018-12-21 10:17:54 +01:00
|
|
|
]
|
|
|
|
}
|