ci: typecheck

This commit is contained in:
Dax Raad
2025-09-15 03:30:15 -04:00
parent e0bfbcb663
commit df046e5e04
2 changed files with 14 additions and 4 deletions

View File

@@ -4,10 +4,20 @@
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"customConditions": ["development"],
"types": [
"vite/client"
],
"lib": [
"DOM",
"DOM.Iterable",
],
"customConditions": [
"development"
],
"paths": {
"@/*": ["./src/*"]
"@/*": [
"./src/*"
]
}
}
}