-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
default target ES2022 to avoid unnecessary old JS code like 'use stri…
…ct' at the top of the file and easier debugging of dist files, plus top level await support
- Loading branch information
1 parent
262d640
commit 16cf0e1
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
"@opral/tsconfig": minor | ||
--- | ||
|
||
default target ES2022 to avoid unnecessary old JS code like 'use strict' at the top of the file and easier debugging of dist files, plus top level await support | ||
|
||
```diff | ||
{ | ||
"compilerOptions": { | ||
... | ||
+ "target": "ES2022" | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters