Skip to content

Commit

Permalink
tsc: disable source maps
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Oct 1, 2024
1 parent 24cdcdb commit 61e05b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tsconfig.esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"baseUrl": ".",
"outDir": "esm",
"module": "es2020",
"moduleResolution": "bundler"
"moduleResolution": "bundler",
"sourceMap": false,
"declarationMap": false
},
"include": [
"index.ts"
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"extends": "@paulmillr/jsbt/tsconfig.cjs.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "."
"outDir": ".",
"sourceMap": false,
"declarationMap": false
},
"include": [
"index.ts"
Expand Down

0 comments on commit 61e05b0

Please sign in to comment.