nope/tsconfigBackend.json

39 lines
724 B
JSON
Raw Normal View History

2020-08-19 06:36:59 +00:00
{
"compilerOptions": {
2020-08-25 22:11:26 +00:00
"target": "es2019",
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,
"removeComments": true,
"rootDir": "./",
2020-08-21 16:38:21 +00:00
"stripInternal": true,
2020-09-08 08:46:52 +00:00
"downlevelIteration": true,
"noImplicitAny": false
2020-08-19 06:36:59 +00:00
},
"include": [
"next-env.d.ts",
"**/*.ts",
2020-09-10 16:21:01 +00:00
"lib",
"open-api",
2020-08-21 14:49:48 +00:00
"src",
"test"
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
}