45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"dom",
|
|
"es6",
|
|
"es2017",
|
|
"esnext.asynciterable"
|
|
],
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./",
|
|
"moduleResolution": "node",
|
|
"removeComments": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"ignoreDeprecations": "5.0",
|
|
"typeRoots": [
|
|
"./src/types",
|
|
"./node_modules/@types"
|
|
],
|
|
// "baseUrl": "src/",
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
// "allowJs": true,
|
|
// "declaration": true
|
|
// "emitDeclarationOnly": true,
|
|
// "declarationMap": true
|
|
"strictPropertyInitialization": false
|
|
},
|
|
"include": [
|
|
"src/swagger-output.json",
|
|
"src/langs/json/*.json",
|
|
"./src/**/*.tsx",
|
|
"./src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"test/**/*.ts"
|
|
]
|
|
} |