Skip to content

Commit

Permalink
feat(wc): fix versions of es
Browse files Browse the repository at this point in the history
  • Loading branch information
Hristo Hristov authored and Hristo Hristov committed Jan 15, 2025
1 parent 167f2f3 commit 4861a7e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"compilerOptions": {
"target": "es2018",
"module": "esnext",
"target": "es2021",
"module": "es2020",
"moduleResolution": "node",
"noEmitOnError": true,
"lib": [
"es2017",
"es2023",
"dom",
"dom.iterable"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default defineConfig({
warn(warning);
},
},
target: 'esnext',
target: 'es2021',
minify: 'terser',
emptyOutDir: false,
},
Expand Down

0 comments on commit 4861a7e

Please sign in to comment.