Skip to content

Commit

Permalink
build(tsconfig): removeComments
Browse files Browse the repository at this point in the history
In order to run comments are not needed. Source maps are still there.
  • Loading branch information
EdJoPaTo committed Jan 9, 2024
1 parent e8f8e3f commit aa62c4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"url": "https://EdJoPaTo.de"
},
"scripts": {
"start": "tsc --sourceMap && node --enable-source-maps dist/bastion-siege-clone.js",
"test": "tsc --sourceMap && xo"
"start": "tsc && node --enable-source-maps dist/bastion-siege-clone.js",
"test": "tsc && xo"
},
"type": "module",
"engines": {
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
],
"compilerOptions": {
"declaration": false,
"removeComments": true,
"sourceMap": true,
"outDir": "dist"
}
Expand Down

0 comments on commit aa62c4a

Please sign in to comment.