Skip to content

Commit

Permalink
fix(build): set noEmitHelpers=false due to importHelpers=true (#5752)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhe authored Jan 31, 2024
1 parent 004b7f8 commit fb81938
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tsconfig.cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"compilerOptions": {
"importHelpers": true,
"module": "commonjs",
"noEmitHelpers": true,
"noEmitHelpers": false,
"target": "ES2018",
"strict": true
}
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.es.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"compilerOptions": {
"importHelpers": true,
"module": "esnext",
"noEmitHelpers": true,
"noEmitHelpers": false,
"target": "ES2020",
"strict": true
}
Expand Down

0 comments on commit fb81938

Please sign in to comment.