2018-12-21 18:17:54 +09:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-07-03 15:48:56 +09:00
|
|
|
"target": "ES2015",
|
2018-12-21 18:17:54 +09:00
|
|
|
"module": "commonjs",
|
2019-01-04 18:33:02 +09:00
|
|
|
"outDir": "./src",
|
2019-01-15 17:48:10 +09:00
|
|
|
"declaration": true,
|
2019-01-04 18:33:02 +09:00
|
|
|
"declarationDir": "./types",
|
|
|
|
"rootDir": "./ts_src",
|
2018-12-21 18:17:54 +09:00
|
|
|
"types": [
|
|
|
|
"node"
|
|
|
|
],
|
2018-12-26 18:37:09 +09:00
|
|
|
"allowJs": false,
|
2018-12-29 10:38:22 +09:00
|
|
|
"strict": true,
|
2018-12-29 00:53:54 +09:00
|
|
|
"noImplicitAny": true,
|
2018-12-29 01:55:07 +09:00
|
|
|
"strictNullChecks": true,
|
2018-12-26 18:37:09 +09:00
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictBindCallApply": true,
|
2018-12-29 10:35:57 +09:00
|
|
|
"strictPropertyInitialization": true,
|
2018-12-29 01:55:07 +09:00
|
|
|
"noImplicitThis": true,
|
|
|
|
"alwaysStrict": true,
|
2019-03-04 00:10:12 +09:00
|
|
|
"esModuleInterop": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true
|
2018-12-21 18:17:54 +09:00
|
|
|
},
|
|
|
|
"include": [
|
2019-01-04 18:33:02 +09:00
|
|
|
"ts_src/**/*.ts"
|
2018-12-21 18:17:54 +09:00
|
|
|
],
|
|
|
|
"exclude": [
|
2018-12-26 14:25:33 +09:00
|
|
|
"**/*.spec.ts",
|
|
|
|
"node_modules/**/*"
|
2018-12-21 18:17:54 +09:00
|
|
|
]
|
|
|
|
}
|