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.
28 lines
561 B
28 lines
561 B
{
|
|
"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/**/*"
|
|
]
|
|
}
|
|
|