| 1234567891011121314151617181920212223 |
- {
- "name": "core",
- "$schema": "../../node_modules/nx/schemas/project-schema.json",
- "sourceRoot": "libs/core/src",
- "projectType": "library",
- "tags": [],
- "targets": {
- "unit": {
- "executor": "@nx/jest:jest",
- "outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
- "options": {
- "jestConfig": "libs/core/jest.config.ts",
- "passWithNoTests": true
- },
- "configurations": {
- "ci": {
- "ci": true,
- "codeCoverage": true
- }
- }
- }
- }
- }
|