2019-03-23 10:58:50 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-03-24 11:56:56 +00:00
|
|
|
"target": "es2017",
|
2019-03-23 10:58:50 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"outDir": "./src",
|
|
|
|
"declaration": true,
|
|
|
|
"declarationDir": "./types",
|
|
|
|
"rootDir": "./ts_src",
|
|
|
|
"types": [
|
|
|
|
"node"
|
|
|
|
],
|
|
|
|
"allowJs": false,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"esModuleInterop": false,
|
|
|
|
"noUnusedLocals": true,
|
2019-03-23 11:45:13 +00:00
|
|
|
"noUnusedParameters": true,
|
|
|
|
"resolveJsonModule": true
|
2019-03-23 10:58:50 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2019-03-26 02:58:52 +00:00
|
|
|
"ts_src/**/*.ts",
|
|
|
|
"ts_src/**/*.json"
|
2019-03-23 10:58:50 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"**/*.spec.ts",
|
|
|
|
"node_modules/**/*"
|
|
|
|
]
|
|
|
|
}
|