Skip to content

Commit

Permalink
Add note on comment output
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 committed Dec 8, 2022
1 parent 71152ad commit 25f4844
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
"noUnusedParameters": false,
"outDir": "build",
"pretty": true,
// We want comments in the .d.ts files. TS does not allow us to remove comments
// from .js output only (https://github.com/microsoft/TypeScript/issues/45187, https://github.com/microsoft/TypeScript/issues/13318).
// So minifiers have to strip them off later on.
"removeComments": false,
"resolveJsonModule": true,
"rootDir": "src",
Expand Down

0 comments on commit 25f4844

Please sign in to comment.