-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathproject.json
More file actions
27 lines (27 loc) · 699 Bytes
/
project.json
File metadata and controls
27 lines (27 loc) · 699 Bytes
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
{
"name": "angular",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/angular/src",
"projectType": "library",
"tags": [],
"generators": {},
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "packages/angular/tsconfig.lib.prod.json",
"project": "packages/angular/ng-package.json"
}
},
"lint": {
"executor": "@nx/eslint:lint"
},
"test": {
"executor": "@nx/jest:jest",
"options": {
"jestConfig": "packages/angular/jest.config.ts"
},
"outputs": ["{workspaceRoot}/coverage/packages/angular"]
}
}
}