Skip to content

Commit

Permalink
change tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
baumgm94 committed Mar 28, 2023
1 parent 89521e2 commit 3db981d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
3 changes: 1 addition & 2 deletions config/tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
"emitDecoratorMetadata": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"lib": ["es2015"],
"types": []
"lib": ["es2015"]
},
"include": ["../src/**/*"]
}
5 changes: 3 additions & 2 deletions config/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"outDir": "../"
"outDir": "../",
"types": []
},
"exclude": ["../node_modules"]
"exclude": []
}
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
"extends": "./config/tsconfig.base.json",
"compilerOptions": {
"rootDir": "./",
"strictPropertyInitialization": false,
"experimentalDecorators": true,
"watch": true,
"sourceMap": true
}
},
"include": ["./src/**/*", "./test/**/*"]
}

0 comments on commit 3db981d

Please sign in to comment.