Initial version for solidjs and vite as build tool

This commit is contained in:
Guntis Smaukstelis
2023-05-14 22:07:16 +03:00
parent bbf1eb0c01
commit 16c9714f8a
19 changed files with 3682 additions and 19 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"noEmit": true,
"isolatedModules": true
}
}