28 lines
561 B
JSON
28 lines
561 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2015",
|
|
"module": "commonjs",
|
|
"outDir": "./dist",
|
|
"rootDir": "./",
|
|
"types": [
|
|
"node"
|
|
],
|
|
"allowJs": false,
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": false,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": false,
|
|
"noImplicitThis": false,
|
|
"alwaysStrict": false,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"**/*.spec.ts",
|
|
"node_modules/**/*"
|
|
]
|
|
}
|