Skip to content

Commit 49ebdf9

Browse files
authoredJan 23, 2024
fix(binding/types): Add bugfixes field to EnvConfig (#8538)
**Description:** Add `bugfixes` field to EnvConfig
1 parent 1386fb8 commit 49ebdf9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

‎packages/types/index.ts

+7
Original file line numberDiff line numberDiff line change
@@ -540,6 +540,13 @@ export interface EnvConfig {
540540

541541
loose?: boolean;
542542

543+
/**
544+
* Transpiles the broken syntax to the closest non-broken modern syntax
545+
*
546+
* Defaults to false.
547+
*/
548+
bugfixes?: boolean;
549+
543550
/// Skipped es features.
544551
///
545552
/// e.g.)

0 commit comments

Comments
 (0)
Please sign in to comment.