Skip to content

Commit

Permalink
Merge pull request #23 from philbates35/tsconfig-esnext
Browse files Browse the repository at this point in the history
tsconfig: Use ESNext in target and lib
  • Loading branch information
philbates35 authored Feb 15, 2024
2 parents abde0b3 + 299321c commit 69fc6da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"compilerOptions": {
"target": "ES2020",
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"skipLibCheck": true,

/* Bundler mode */
Expand Down

0 comments on commit 69fc6da

Please sign in to comment.