Skip to content

Commit

Permalink
Merge pull request #984 from andersk/es2020
Browse files Browse the repository at this point in the history
Reduce TypeScript target to ES2020
  • Loading branch information
fabian-hiller authored Dec 23, 2024
2 parents 4758c9d + 028e957 commit 65083e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion library/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"noEmit": true,
"skipLibCheck": true,
"strict": true,
"target": "ESNext"
"target": "ES2020"
},
"include": ["src"]
}
2 changes: 1 addition & 1 deletion packages/i18n/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"strict": true,
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "node",
"allowImportingTsExtensions": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/to-json-schema/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"noEmit": true,
"skipLibCheck": true,
"strict": true,
"target": "ESNext",
"target": "ES2020",
"paths": {
"valibot": ["../../library/src/index.ts"],
"valibot/*": ["../../library/src/*"]
Expand Down

0 comments on commit 65083e6

Please sign in to comment.