Update to latest solidjs and added some spice

This commit is contained in:
aronmal 2024-02-23 19:08:09 +01:00
parent fad746ceec
commit b09418b3ec
Signed by: aronmal
GPG key ID: 816B7707426FC612
35 changed files with 4318 additions and 2831 deletions

View file

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