-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
33 lines (33 loc) · 907 Bytes
/
project.json
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
31
32
33
{
"name": "components",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"sourceRoot": "libs/components/src",
"prefix": "gewd",
"targets": {
"build": {
"executor": "@nx/angular:package",
"options": {
"tsConfig": "libs/components/tsconfig.lib.json",
"project": "libs/components/ng-package.json",
"buildableProjectDepsInPackageJsonType": "dependencies",
"updateBuildableProjectDepsInPackageJson": true
}
},
"test": {
"executor": "@nx/jest:jest",
"options": {
"jestConfig": "libs/components/jest.config.ts",
"passWithNoTests": true
},
"outputs": ["{workspaceRoot}/coverage/libs/components"]
}
},
"generators": {
"@nx/angular:component": {
"styleext": "scss"
}
},
"tags": [],
"implicitDependencies": ["ng-utils", "mat-utils"]
}