Migrate to Vite / Vite+

Modernize building and such
This commit is contained in:
2026-04-03 21:12:56 -07:00
parent 445f95340a
commit f04fd0fada
26 changed files with 8080 additions and 4180 deletions

View File

@@ -1,20 +1,22 @@
{
"compilerOptions": {
"outDir": "./dist/",
"baseUrl": "./src",
"sourceMap": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strict": true,
"target": "ES2020",
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "Node",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"types": ["vite/client", "node"]
},
"include": [
"./src/**/*"
]
"include": ["./src/**/*", "./scripts/**/*", "./vite.config.ts"]
}