-
Notifications
You must be signed in to change notification settings - Fork 1
/
workspace.json
44 lines (44 loc) · 1.17 KB
/
workspace.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
34
35
36
37
38
39
40
41
42
43
44
{
"version": 2,
"projects": {
"ng-helmet": {
"projectType": "library",
"root": "packages/ng-helmet",
"sourceRoot": "packages/ng-helmet/src",
"prefix": "ng-helmet",
"targets": {
"build": {
"executor": "@nrwl/angular:package",
"options": {
"tsConfig": "packages/ng-helmet/tsconfig.lib.json",
"project": "packages/ng-helmet/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "packages/ng-helmet/tsconfig.lib.prod.json"
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"packages/ng-helmet/src/**/*.ts",
"packages/ng-helmet/src/**/*.html"
]
},
"outputs": ["{options.outputFile}"]
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/packages/ng-helmet"],
"options": {
"jestConfig": "packages/ng-helmet/jest.config.ts",
"passWithNoTests": true
}
}
},
"tags": []
}
}
}