feat(frontend): scaffold Vite + React + TypeScript project

This commit is contained in:
meelstorm
2026-07-17 17:52:47 +00:00
committed by EugeneTes
parent b6a0709c3e
commit 96468d9dde
12 changed files with 1556 additions and 0 deletions

8
Frontend/.oxlintrc.json Normal file
View File

@@ -0,0 +1,8 @@
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["react", "typescript", "oxc"],
"rules": {
"react/rules-of-hooks": "error",
"react/only-export-components": ["warn", { "allowConstantExport": true }]
}
}