Skip to content

Commit

Permalink
Centralize tsconf (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
evilUrge authored Jul 18, 2022
1 parent d328431 commit 219b86d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
!jest.config.js
*.d.ts
node_modules/
.history/
dist/
yarn-error.log
3 changes: 1 addition & 2 deletions packages/helloworld/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
"test": "jest"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.101",
"typescript-package": "1.0.0"
"@types/aws-lambda": "^8.10.101"
},
"dependencies": {
"moment": "^2.29.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/helloworld/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node14/tsconfig.json",
"extends": "typescript-package/tsconfig.json",
"compilerOptions": {
"outDir": "dist"
}
Expand Down
3 changes: 1 addition & 2 deletions packages/infrastructure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
},
"devDependencies": {
"aws-cdk": "2.32.0",
"esbuild": "0",
"typescript-package": "1.0.0"
"esbuild": "0"
},
"dependencies": {
"aws-cdk-lib": "2.32.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/infrastructure/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node14/tsconfig.json",
"extends": "typescript-package/tsconfig.json",
"compilerOptions": {
"outDir": "dist"
}
Expand Down

0 comments on commit 219b86d

Please sign in to comment.