WIP: Failed attempt to do a solid-js app.

For now...
This commit is contained in:
Nicolás Hatcher
2024-05-22 20:55:54 +02:00
parent 49c3b14bf0
commit 379c84f64a
60 changed files with 7846 additions and 0 deletions

30
solidjs_app/tsconfig.json Normal file
View File

@@ -0,0 +1,30 @@
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"types": [
"vite-plugin-solid-svg/types-component-solid",
"vite/client"
]
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}