- Removed `ciTargetName` from `nx.json`. - Updated `package.json` to include new dependencies: `@types/seedrandom`, `fast-check`, `happy-dom`, and `@nestjs/schedule`. - Modified `pnpm-lock.yaml` to reflect the addition of new packages and their versions. - Improved project documentation in `PROJECT_CONTEXT.md` to clarify the use of Zod schemas and Angular framework decisions. - Introduced new Angular components and patterns in the `.agents/skills/frontend-angular` directory, including examples and reference materials for Angular 21+ features.
27 lines
741 B
JSON
27 lines
741 B
JSON
{
|
|
"name": "encounter-library",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "libs/encounter-library/src",
|
|
"projectType": "library",
|
|
"tags": ["scope:shared", "type:lib"],
|
|
"targets": {
|
|
"build": {
|
|
"executor": "@nx/js:tsc",
|
|
"outputs": ["{options.outputPath}"],
|
|
"options": {
|
|
"outputPath": "dist/libs/encounter-library",
|
|
"main": "libs/encounter-library/src/index.ts",
|
|
"tsConfig": "libs/encounter-library/tsconfig.lib.json",
|
|
"assets": [
|
|
"libs/encounter-library/*.md",
|
|
{
|
|
"input": "libs/encounter-library/src/lib",
|
|
"output": "src/lib",
|
|
"glob": "*.json"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|