24 lines
820 B
JSON
24 lines
820 B
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,
|
|
"typeRoots": ["./src/types", "./node_modules/@types"],
|
|
// "baseUrl": "src/",
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src/swagger-output.json", "src/langs/json/*.json", "./src/**/*.tsx", "./src/**/*.ts"],
|
|
"exclude": ["node_modules", "test/**/*.ts"]
|
|
}
|