Skip to content

Commit

Permalink
feat(build): enable importHelpers
Browse files Browse the repository at this point in the history
BREAKING CHANGE: enable importHelpers on the shared Typescript
configuration file which requires `tslib` to be installed on dependent
packages if the shared Typescript configuration is used.

To migrate, run `npm install tslib` on the dependent package before
updating to this version.

see #4676

Signed-off-by: Rifa Achrinza <25147899+achrinza@users.noreply.github.com>
  • Loading branch information
achrinza authored and raymondfeng committed Feb 21, 2020
1 parent a6e0b4c commit e44f084
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/build/config/tsconfig.common.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"moduleResolution": "node",
"target": "es2017",
"sourceMap": true,
"declaration": true
"declaration": true,
"importHelpers": true
}
}

0 comments on commit e44f084

Please sign in to comment.