Files
ISA-Frontend/libs/crm/data-access/project.json
Lorenz Hilpert e00de7598d feat(crm): add crm-data-access library with initial component and tests
- Introduced the crm-data-access library with a basic component.
- Added necessary configuration files, including ESLint and TypeScript settings.
- Implemented unit tests for the component to ensure functionality.

Refs: #5254
2025-09-11 20:13:56 +02:00

21 lines
483 B
JSON

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