mirror of
https://github.com/steedos/steedos-platform
synced 2024-11-23 01:16:43 +00:00
32 lines
745 B
JSON
32 lines
745 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2017",
|
|
"noImplicitAny": false,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"stripInternal": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "./dist",
|
|
"newLine": "LF",
|
|
"lib": [
|
|
"es2017"
|
|
],
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"removeComments": true
|
|
},
|
|
"include": [
|
|
"./src"
|
|
],
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|