Initial Commit

This commit is contained in:
2024-09-11 18:57:35 +02:00
commit ff1a747f9d
21 changed files with 3271 additions and 0 deletions

27
tsconfig.json Normal file
View File

@@ -0,0 +1,27 @@
{
"extends": [
"@tsconfig/svelte/tsconfig.json",
"./.svelte-kit/tsconfig.json"
],
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"resolveJsonModule": true,
/**
* Typecheck JS in `.svelte` and `.js` files by default.
* Disable checkJs if you'd like to use dynamic types in JS.
* Note that setting allowJs false does not prevent the use
* of JS in `.svelte` files.
*/
"allowJs": true,
"checkJs": true,
"isolatedModules": true,
"moduleDetection": "force"
},
"references": [
{
"path": "./tsconfig.node.json"
}
]
}