Skip to content

Commit

Permalink
build(tsconfig): update module and target to ESNext and ES2023 (#2007)
Browse files Browse the repository at this point in the history
  • Loading branch information
hirokiterashima authored Nov 26, 2024
1 parent 0cbffa9 commit 6108d91
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@
"declaration": false,
"esModuleInterop": true,
"moduleResolution": "node",
"module": "es2022",
"module": "ESNext",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "ES2022",
"target": "ES2023",
"resolveJsonModule": true,
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2022",
"ES2023",
"dom"
],
"useDefineForClassFields": false
}
}
}

0 comments on commit 6108d91

Please sign in to comment.