chore: switch to vite for server dev

This commit is contained in:
Aarnav Tale 2025-01-17 08:33:22 +00:00
parent 377641265b
commit c9603ba38a
No known key found for this signature in database
16 changed files with 444 additions and 265 deletions

View file

@ -23,10 +23,11 @@
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"]
},
"~/*": ["./app/*"],
"~server/*": ["./server/*"]
},
// Vite takes care of building everything, not tsc.
"noEmit": true
}
// Vite takes care of building everything, not tsc.
"noEmit": true
}
}