Files
ISA-Frontend/libs/shell/layout/project.json
Lorenz Hilpert e5dd1e312d feat(shell): scaffold shell-layout, shell-header, and shell-navigation libraries
Add new shell domain with three feature libraries:
- shell-layout: Main application layout container
- shell-header: Application header component
- shell-navigation: Navigation component

All libraries configured with:
- Standalone Angular components
- Vitest with JUnit and Cobertura reporters
- Architectural tags (scope:shell, type:feature)
2025-12-02 16:14:35 +01:00

21 lines
505 B
JSON

{
"name": "shell-layout",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/shell/layout/src",
"prefix": "shell",
"projectType": "library",
"tags": ["scope:shell", "type:feature"],
"targets": {
"test": {
"executor": "@nx/vite:test",
"outputs": ["{options.reportsDirectory}"],
"options": {
"reportsDirectory": "../../../coverage/libs/shell/layout"
}
},
"lint": {
"executor": "@nx/eslint:lint"
}
}
}