Skip to content

Commit

Permalink
Merge pull request #470 from Backbase/bugfix/disable-remove-comments-…
Browse files Browse the repository at this point in the history
…in-tsconfig

Set removeComments=false in generated tsconfig.json files
  • Loading branch information
daiscog authored Feb 6, 2023
2 parents 3d51d60 + 243c85a commit 33e5e7e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ The project is very much Work In Progress and will be published on maven central
# Release Notes
BOAT is still under development and subject to change.

## 0.16.11
* Boat Angular generator
* Set `removeComments: false` in generated tsconfig.json files to retain `/*#__PURE__*/` annotation in compiled JS.
## 0.16.10
* Boat Angular generator
* Remove types from generated mock providers due to a TypeScript which prevents `/*#__PURE__*/` annotation from working
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"target": "{{#supportsES6}}es6{{/supportsES6}}{{^supportsES6}}es5{{/supportsES6}}",
"module": "{{#supportsES6}}es6{{/supportsES6}}{{^supportsES6}}commonjs{{/supportsES6}}",
"moduleResolution": "node",
"removeComments": true,
"removeComments": false,
"sourceMap": true,
"outDir": "./dist",
"noLib": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"target": "{{#supportsES6}}es6{{/supportsES6}}{{^supportsES6}}es5{{/supportsES6}}",
"module": "{{#supportsES6}}es6{{/supportsES6}}{{^supportsES6}}commonjs{{/supportsES6}}",
"moduleResolution": "node",
"removeComments": true,
"removeComments": false,
"sourceMap": true,
"outDir": "./dist",
"noLib": false,
Expand Down

0 comments on commit 33e5e7e

Please sign in to comment.