53 lines
928 B
Plaintext
53 lines
928 B
Plaintext
# Node modules
|
|
/node_modules/
|
|
|
|
# .NET build output
|
|
/.next/
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Cache files
|
|
.next/cache/webpack/*.gz
|
|
|
|
# Ignoring trace files
|
|
trace
|
|
|
|
# Webpack cache files
|
|
.next/cache/webpack/client-development/*.gz
|
|
.next/cache/webpack/server-development/*.gz
|
|
|
|
# Ignore specific Next.js build files
|
|
pages-manifest.json
|
|
Lastenheft.js
|
|
# Dendron-Verzeichnis ignorieren
|
|
/draw.io/
|
|
|
|
# Ignore docs.zip
|
|
docs.zip
|
|
|
|
# Entwicklungsdaten
|
|
/mockData/
|
|
/__mocks__/
|
|
/__tests__/
|
|
|
|
# --- Playwright artifacts & selective test tracking ---
|
|
# Ignore Playwright output folders and run metadata
|
|
/test-results/
|
|
/playwright-report/
|
|
/.last-run.json
|
|
# Optional: ignore JUnit report artifacts if not needed in VCS
|
|
/reports/junit/
|
|
|
|
# Ignore all Playwright tests by default, keep only the main spec
|
|
/playwright/tests/**
|
|
!/playwright/tests/mapcomponent.spec.js
|
|
|
|
# Ignore Playwright cache if present
|
|
/playwright/.cache/
|