nope/tsconfigBackend.json
Martin Karkowski b359adaf56 fixing formats
2020-11-24 15:14:56 +01:00

39 lines
724 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"lib": [
"esnext"
],
"allowJs": true,
"allowUnusedLabels": true,
"charset": "utf-8",
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": false,
"noImplicitReturns": true,
"outDir": "./dist",
"pretty": false,
"removeComments": true,
"rootDir": "./",
"stripInternal": true,
"downlevelIteration": true,
"noImplicitAny": false
},
"include": [
"next-env.d.ts",
"**/*.ts",
"lib",
"open-api",
"src",
"test"
],
"exclude": [
"node_modules",
"pages",
"backend-api",
"temp",
".next",
"dist"
]
}