You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
754 B
35 lines
754 B
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"outDir": "./src",
|
|
"declaration": true,
|
|
"rootDir": "./ts_src",
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"allowJs": false,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": false,
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"ts_src/**/*.ts",
|
|
"ts_src/**/*.json"
|
|
],
|
|
"exclude": [
|
|
"**/*.spec.ts",
|
|
"node_modules/**/*"
|
|
]
|
|
}
|
|
|