Bootstrap the Nx (pnpm) workspace at the repo root with the self-service Angular app (standalone + signals, Vitest via @angular/build, ESLint) — the frontend foundation. Nx is scoped to apps/+libs/ only; the .NET services stay on dotnet/Makefile (no @nx/docker inference). A failing test asserts the app renders a 'Zelfservice' heading; it still shows the generated Nx welcome page, so it fails. Green commit implements the placeholder. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
53 lines
734 B
Plaintext
53 lines
734 B
Plaintext
# .NET build output
|
|
bin/
|
|
obj/
|
|
[Dd]ebug/
|
|
[Rr]elease/
|
|
*.user
|
|
|
|
# Reqnroll-generated test code (regenerated from *.feature on build)
|
|
*.feature.cs
|
|
|
|
# Test results / coverage
|
|
[Tt]est[Rr]esults/
|
|
*.trx
|
|
coverage*.json
|
|
coverage*.xml
|
|
*.coverage
|
|
|
|
# Stryker.NET mutation-testing reports (regenerated by `make mutation`)
|
|
StrykerOutput/
|
|
|
|
# Rider / VS / VS Code
|
|
.idea/
|
|
.vs/
|
|
.vscode/
|
|
|
|
# Node / Angular (added as the frontend lands)
|
|
node_modules/
|
|
dist/
|
|
.angular/
|
|
|
|
# Python / MkDocs
|
|
.venv/
|
|
site/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# ── Frontend (Nx / Angular / pnpm) ──
|
|
node_modules/
|
|
dist/
|
|
tmp/
|
|
out-tsc/
|
|
/coverage
|
|
.angular/
|
|
.nx/cache
|
|
.nx/workspace-data
|
|
.nx/self-healing
|
|
.nx/migrate-runs
|
|
.nx/polygraph
|
|
vite.config.*.timestamp*
|
|
vitest.config.*.timestamp*
|