Skip to content

Commit

Permalink
Use ESNext as the lib target, so that we never need to change it
Browse files Browse the repository at this point in the history
  • Loading branch information
jsnajdr committed Nov 3, 2020
1 parent 8fbec49 commit cb36622
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/language-picker/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "ES5",
"lib": [ "DOM", "ES2020" ],
"lib": [ "DOM", "ESNext" ],
"module": "ESNext",
"allowJs": true,
"checkJs": false,
Expand Down
2 changes: 1 addition & 1 deletion packages/search/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "ES5",
"lib": [ "DOM", "ES2020" ],
"lib": [ "DOM", "ESNext" ],
"module": "ESNext",
"allowJs": true,
"checkJs": false,
Expand Down

0 comments on commit cb36622

Please sign in to comment.