| 123456789101112131415161718192021222324252627282930 |
- {
- "name": "app-common",
- "$schema": "../../node_modules/nx/schemas/project-schema.json",
- "sourceRoot": "libs/app-common/src",
- "projectType": "library",
- "tags": [],
- "targets": {
- "lint": {
- "executor": "@nx/eslint:lint",
- "outputs": ["{options.outputFile}"],
- "options": {
- "lintFilePatterns": ["libs/app-common/**/*.{ts,tsx,js,jsx}"]
- }
- },
- "test": {
- "executor": "@nx/jest:jest",
- "outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
- "options": {
- "jestConfig": "libs/app-common/jest.config.ts",
- "passWithNoTests": true
- },
- "configurations": {
- "ci": {
- "ci": true,
- "codeCoverage": true
- }
- }
- }
- }
- }
|