added pasword input to admin panel

This commit is contained in:
2026-02-14 19:01:59 +01:00
parent 977a6c1b16
commit 06976f7972
3 changed files with 165 additions and 8 deletions

View File

@@ -1,10 +1,11 @@
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ESNext",
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"types": ["vite/client"],
"skipLibCheck": true,
/* Bundler mode */
@@ -23,13 +24,10 @@
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
/* Chakra / Pfad Aliases */
"baseUrl": ".",
/* Path aliases */
"paths": {
"@/*": ["./src/*"]
},
"forceConsistentCasingInFileNames": true
}
},
"include": ["src"]
}