mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
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)
21 lines
517 B
JSON
21 lines
517 B
JSON
{
|
|
"name": "shell-navigation",
|
|
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "libs/shell/navigation/src",
|
|
"prefix": "shell",
|
|
"projectType": "library",
|
|
"tags": ["scope:shell", "type:feature"],
|
|
"targets": {
|
|
"test": {
|
|
"executor": "@nx/vite:test",
|
|
"outputs": ["{options.reportsDirectory}"],
|
|
"options": {
|
|
"reportsDirectory": "../../../coverage/libs/shell/navigation"
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint"
|
|
}
|
|
}
|
|
}
|