Initial commit

This commit is contained in:
2026-03-08 01:34:54 +08:00
commit 1f104f73c8
441 changed files with 64911 additions and 0 deletions

21
tsconfig.json Normal file
View File

@@ -0,0 +1,21 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"paths": {
"@/*": ["./src/*"],
"@shared": ["./shared"],
"@shared/*": ["./shared/*"],
"@shared/types": ["./shared/types"],
"@shared/constants": ["./shared/constants"],
"@shared/constants/*": ["./shared/constants/*"],
"@shared/utils": ["./shared/utils"],
"@shared/utils/*": ["./shared/utils/*"],
"@shared/errors": ["./shared/errors"]
},
"types": ["vite/client"]
},
"include": ["src", "shared"],
"exclude": ["src/**/*.test.ts", "src/**/*.test.tsx", "src/**/__tests__/**"]
}