project.json 521 B

1234567891011121314151617181920212223
  1. {
  2. "name": "core",
  3. "$schema": "../../node_modules/nx/schemas/project-schema.json",
  4. "sourceRoot": "libs/core/src",
  5. "projectType": "library",
  6. "tags": [],
  7. "targets": {
  8. "unit": {
  9. "executor": "@nx/jest:jest",
  10. "outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
  11. "options": {
  12. "jestConfig": "libs/core/jest.config.ts",
  13. "passWithNoTests": true
  14. },
  15. "configurations": {
  16. "ci": {
  17. "ci": true,
  18. "codeCoverage": true
  19. }
  20. }
  21. }
  22. }
  23. }