Init solidjs

This commit is contained in:
aronmal 2023-10-17 15:17:22 +02:00
parent ba1b1d7080
commit cd14a32e42
Signed by: aronmal
GPG key ID: 816B7707426FC612
150 changed files with 238 additions and 0 deletions

16
tsconfig.json Normal file
View file

@ -0,0 +1,16 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"jsxImportSource": "solid-js",
"jsx": "preserve",
"strict": true,
"baseUrl": "./",
"paths": {
"~/*": ["./src/*"]
}
}
}