nope/tsconfigBackend.json

39 lines
729 B
JSON
Raw Normal View History

2020-08-19 06:36:59 +00:00
{
"compilerOptions": {
2021-10-18 06:03:06 +00:00
"target": "ES2020",
2020-08-19 06:36:59 +00:00
"lib": [
"esnext"
],
"allowJs": true,
2020-08-21 14:49:48 +00:00
"allowUnusedLabels": true,
"charset": "utf-8",
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": false,
"noImplicitReturns": true,
"outDir": "./dist",
"pretty": false,
2021-09-12 07:51:24 +00:00
"removeComments": false,
2020-08-21 14:49:48 +00:00
"rootDir": "./",
2020-08-21 16:38:21 +00:00
"stripInternal": true,
2020-09-08 08:46:52 +00:00
"downlevelIteration": true,
2021-08-30 04:40:28 +00:00
"noImplicitAny": false,
"declaration": true
2020-08-19 06:36:59 +00:00
},
"include": [
2020-09-10 16:21:01 +00:00
"lib",
"open-api",
2020-08-21 14:49:48 +00:00
"src",
2021-10-15 14:45:17 +00:00
"test",
"modules"
2020-08-19 06:36:59 +00:00
],
"exclude": [
"node_modules",
"pages",
2020-08-25 09:02:28 +00:00
"backend-api",
"temp",
2020-08-23 07:27:42 +00:00
".next",
"dist"
2020-08-19 06:36:59 +00:00
]
2020-08-21 14:49:48 +00:00
}