Skip to content

Commit

Permalink
Revision 0.32.33 (#905)
Browse files Browse the repository at this point in the history
* Use ES2020 Target

* Version
  • Loading branch information
sinclairzx81 authored Jun 17, 2024
1 parent 7ef8e83 commit f065cfc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sinclair/typebox",
"version": "0.32.32",
"version": "0.32.33",
"description": "Json Schema Type Builder with Static Type Resolution for TypeScript",
"keywords": [
"typescript",
Expand Down
2 changes: 1 addition & 1 deletion task/build/esm/compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ declare function shell(command: string): Promise<void>
export async function compile(target: string) {
const options = [
`--outDir ${target}`,
'--target ESNext',
'--target ES2020',
'--module ESNext',
'--declaration',
].join(' ')
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Node",
"baseUrl": ".",
Expand Down

0 comments on commit f065cfc

Please sign in to comment.