chore(scaffolder): Updating the boilerplate for the scaffolder backend

This commit is contained in:
blam
2020-06-16 15:03:21 +02:00
parent 1e5e270bb7
commit d5f5e83fe7
3 changed files with 24 additions and 77 deletions
+12 -7
View File
@@ -1,11 +1,16 @@
{
"extends": "../../packages/backend/tsconfig.json",
"include": [
"./src"
],
"include": ["src"],
"compilerOptions": {
"baseUrl": "./src",
"outDir": "./dist",
"skipLibCheck": true
"outDir": "dist",
"incremental": true,
"sourceMap": true,
"declaration": true,
"strict": true,
"target": "es2019",
"module": "commonjs",
"esModuleInterop": true,
"allowJs": true,
"lib": ["es2019"],
"types": ["node", "jest", "webpack-env"]
}
}