Skip to content

Commit

Permalink
Fix missing DOM types
Browse files Browse the repository at this point in the history
ref #697
  • Loading branch information
frostburn committed May 18, 2024
1 parent 441cd18 commit 8284f55
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"paths": {
"@/*": ["./src/*"]
},
"lib": ["es2021"]
"lib": ["es2021", "DOM", "DOM.Iterable"]
}
}
3 changes: 1 addition & 2 deletions tsconfig.node.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"composite": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["node"],
"lib": ["es2021"]
"types": ["node"]
}
}
3 changes: 2 additions & 1 deletion tsconfig.vitest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"exclude": [],
"compilerOptions": {
"composite": true,
"types": ["node", "jsdom"]
"lib": [],
"types": ["node", "jsdom"],
}
}

0 comments on commit 8284f55

Please sign in to comment.