Migrate frontend sources to TypeScript

This commit is contained in:
2026-02-24 21:35:15 +01:00
parent fa3b46c8a9
commit 757f9a259e
13 changed files with 403 additions and 51 deletions

View File

@@ -2,7 +2,8 @@
Fresh full-stack starter scaffold:
- `RpgRoller/`: ASP.NET Core backend + static frontend (`wwwroot`)
- `RpgRoller/`: ASP.NET Core backend + static frontend output (`wwwroot`)
- `RpgRoller/frontend/`: TypeScript frontend source
- `RpgRoller.Tests/`: xUnit integration-heavy test project
- `RpgRoller.sln`: solution used by local CI script
@@ -27,7 +28,8 @@ Fresh full-stack starter scaffold:
## Frontend Tooling
- OpenAPI contract: `openapi/RpgRoller.json`
- API client generation: `npm run generate:api-client`
- TypeScript build output config: `tsconfig.frontend.json`
- API client generation + frontend compile: `npm run generate:api-client`
- Frontend lint checks: `npm run lint`
- Frontend format checks: `npm run format:check`