1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| {
| "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
| }
| }
| }
| }
| }
|
|