Skip to content

Commit

Permalink
chore: enable declarationMap
Browse files Browse the repository at this point in the history
  • Loading branch information
anchan828 committed Jul 9, 2023
1 parent f689545 commit 933d8bc
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
*
!dist/**/*
dist/**/*.tsbuildinfo
dist/**/*.js.map
dist/**/*.ts.map
2 changes: 2 additions & 0 deletions packages/sendgrid/.npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
*
!dist/**/*
dist/**/*.tsbuildinfo
dist/**/*.js.map
dist/**/*.ts.map
3 changes: 2 additions & 1 deletion packages/sendgrid/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist",
"baseUrl": "./"
"baseUrl": "./",
"declarationMap": true
},
"exclude": ["node_modules", "dist"]
}
2 changes: 2 additions & 0 deletions packages/terminus/.npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
*
!dist/**/*
dist/**/*.tsbuildinfo
dist/**/*.js.map
dist/**/*.ts.map
3 changes: 2 additions & 1 deletion packages/terminus/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist",
"baseUrl": "./"
"baseUrl": "./",
"declarationMap": true
},
"exclude": ["node_modules", "dist"]
}

0 comments on commit 933d8bc

Please sign in to comment.