From e44f084b6c8df762c0563b3716f13135f652b082 Mon Sep 17 00:00:00 2001 From: Rifa Achrinza <25147899+achrinza@users.noreply.github.com> Date: Fri, 21 Feb 2020 09:58:51 +0800 Subject: [PATCH] feat(build): enable importHelpers 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> --- packages/build/config/tsconfig.common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/build/config/tsconfig.common.json b/packages/build/config/tsconfig.common.json index 6a96b6f8e530..95fe59228ae7 100644 --- a/packages/build/config/tsconfig.common.json +++ b/packages/build/config/tsconfig.common.json @@ -18,6 +18,7 @@ "moduleResolution": "node", "target": "es2017", "sourceMap": true, - "declaration": true + "declaration": true, + "importHelpers": true } }