Initial Commit

This commit is contained in:
2025-11-12 11:51:12 +01:00
parent 4e1ca3fb74
commit b18d8d6477
11 changed files with 7070 additions and 5946 deletions

View File

@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -19,7 +23,12 @@
}
],
"paths": {
"@/*": ["./src/*"]
"@/*": [
"./src/*"
],
"~/*": [
"./*"
]
}
},
"include": [
@@ -30,5 +39,7 @@
".next/dev/types/**/*.ts",
"**/*.mts"
],
"exclude": ["node_modules"]
"exclude": [
"node_modules"
]
}