Initial commit

Created from https://vercel.com/new
This commit is contained in:
yzned
2025-07-18 10:26:56 +00:00
commit 5bb273d4cc
23 changed files with 7374 additions and 0 deletions

37
tsconfig.json Normal file
View File

@@ -0,0 +1,37 @@
{
"include": [
"**/*.ts",
"**/*.tsx"
],
"compilerOptions": {
"target": "ES2022",
"jsx": "react-jsx",
"module": "ESNext",
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"types": [
"vite/client"
],
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
/* Linting */
"skipLibCheck": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
],
}
}
}