Initial commit

This commit is contained in:
Samuel 2024-12-08 11:27:16 +01:00
commit d06e6d913e
27 changed files with 4378 additions and 0 deletions

30
tsconfig.json Normal file
View file

@ -0,0 +1,30 @@
{
"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,
"verbatimModuleSyntax": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./src/*"
]
},
},
// "files": [
// "./eslint.config.js",
// "./prettier.config.js",
// "./tailwind.config.js",
// "./postcss.config.js",
// ]
}