bea5e1954f
Add the @nx/angular, @nx/nest, @nx/vite, @nx/eslint plugins, then generate the two apps. Adjust the empty-template tsconfig.base.json to be Angular-compatible (drop project references and customConditions that the empty-template defaults to but Angular doesn't support; keep the strict-TS extensions from ADR-0004). apps/portal-shell (Angular 21): - standalone APIs, routing, SCSS, esbuild - vitest-angular as unitTestRunner, playwright for e2e - strict mode - tags scope:portal-shell, type:app - app.config.ts wired with provideZonelessChangeDetection() per ADR-0004 (Angular 21 + Nx 22 generates without zone.js by default) apps/portal-bff (NestJS 11): - Express adapter (default per ADR-0005) - Jest as unitTestRunner - tags scope:portal-bff, type:app - main.ts wired with a global ValidationPipe configured whitelist + forbidNonWhitelisted + transform per ADR-0005 - Phase-2 security additions (helmet, CORS, sessions, CSRF, rate limit, auth guards, error filter) deferred to their respective ADRs - placeholder comment in main.ts Workspace dependencies: class-validator + class-transformer added (required by NestJS ValidationPipe at runtime). Nx-generated .gitignore additions (.angular, __screenshots__) merged into ours. .vscode/extensions.json and launch.json added by Nx are kept (do not override our existing settings.json).
18 lines
490 B
JSON
18 lines
490 B
JSON
{
|
|
"name": "portal-bff-e2e",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"implicitDependencies": ["portal-bff"],
|
|
"projectType": "application",
|
|
"targets": {
|
|
"e2e": {
|
|
"executor": "@nx/jest:jest",
|
|
"outputs": ["{workspaceRoot}/coverage/{e2eProjectRoot}"],
|
|
"options": {
|
|
"jestConfig": "apps/portal-bff-e2e/jest.config.cts",
|
|
"passWithNoTests": true
|
|
},
|
|
"dependsOn": ["portal-bff:build", "portal-bff:serve"]
|
|
}
|
|
}
|
|
}
|