From 6f0bf9bd7721c2b8c6ea27b93dae2fcc75f2e22c Mon Sep 17 00:00:00 2001 From: George Fu Date: Sat, 3 Feb 2024 15:51:04 +0000 Subject: [PATCH] fix: set noEmitHelpers=false --- tsconfig.cjs.json | 2 +- tsconfig.es.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.cjs.json b/tsconfig.cjs.json index ed803e0b8bd..757be2aa643 100644 --- a/tsconfig.cjs.json +++ b/tsconfig.cjs.json @@ -3,7 +3,7 @@ "compilerOptions": { "importHelpers": true, "module": "commonjs", - "noEmitHelpers": true, + "noEmitHelpers": false, "target": "ES2018", "strict": true } diff --git a/tsconfig.es.json b/tsconfig.es.json index 7d12c7a5499..0bb615bbace 100644 --- a/tsconfig.es.json +++ b/tsconfig.es.json @@ -3,7 +3,7 @@ "compilerOptions": { "importHelpers": true, "module": "esnext", - "noEmitHelpers": true, + "noEmitHelpers": false, "target": "ES2020", "strict": true }