2018-12-21 10:17:54 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2015",
|
|
|
|
"module": "commonjs",
|
2019-01-04 10:33:02 +01:00
|
|
|
"outDir": "./src",
|
2019-01-15 09:48:10 +01:00
|
|
|
"declaration": true,
|
2019-01-04 10:33:02 +01:00
|
|
|
"declarationDir": "./types",
|
|
|
|
"rootDir": "./ts_src",
|
2018-12-21 10:17:54 +01:00
|
|
|
"types": [
|
|
|
|
"node"
|
|
|
|
],
|
2018-12-26 10:37:09 +01:00
|
|
|
"allowJs": false,
|
2018-12-29 02:38:22 +01:00
|
|
|
"strict": true,
|
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,
|
2019-03-03 16:10:12 +01:00
|
|
|
"esModuleInterop": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true
|
2018-12-21 10:17:54 +01:00
|
|
|
},
|
|
|
|
"include": [
|
2019-01-04 10:33:02 +01:00
|
|
|
"ts_src/**/*.ts"
|
2018-12-21 10:17:54 +01:00
|
|
|
],
|
|
|
|
"exclude": [
|
2018-12-26 06:25:33 +01:00
|
|
|
"**/*.spec.ts",
|
|
|
|
"node_modules/**/*"
|
2018-12-21 10:17:54 +01:00
|
|
|
]
|
|
|
|
}
|