Skip to content

Commit

Permalink
chore: update tscnofig.json compilerOptions(target, lib)
Browse files Browse the repository at this point in the history
  • Loading branch information
ren-yamanashi committed Oct 30, 2024
1 parent 1a53a4a commit 8c3d56b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"compilerOptions": {
"target": "ES2023",
"target": "ES2022",
"module": "commonjs",
"lib": ["dom"],
"lib": [
"ES2023",
"dom"
],
"declaration": true,
"strict": true,
"noUnusedLocals": false,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"compilerOptions": {
"target": "ES2023",
"target": "ES2022",
"module": "commonjs",
"lib": ["dom"],
"lib": [
"ES2023",
"dom"
],
"declaration": true,
"strict": true,
"noUnusedLocals": false,
Expand Down

0 comments on commit 8c3d56b

Please sign in to comment.