add example solidstart+vite

This commit is contained in:
EmoPorEmilio
2024-07-11 20:32:27 -03:00
parent ae1cdac7db
commit eeaf768581
18 changed files with 8542 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"allowJs": true,
"noEmit": true,
"strict": true,
"types": ["vinxi/types/client"],
"isolatedModules": true,
"paths": {
"~/*": ["./src/*"]
}
}
}