forked from Coly010/example-nx-ng-mfe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathangular.json
More file actions
47 lines (47 loc) · 1.43 KB
/
angular.json
File metadata and controls
47 lines (47 loc) · 1.43 KB
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
45
46
47
{
"version": 2,
"projects": {
"launcher": "libs/launcher",
"login": "apps/login",
"login-e2e": "apps/login-e2e",
"login-feature": "libs/login/feature",
"notes": "apps/notes",
"notes-data-access": "libs/notes/data-access",
"notes-e2e": "apps/notes-e2e",
"notes-feature": "libs/notes/feature",
"notes-ui": "libs/notes/ui",
"shared-data-access-auth": "libs/shared/data-access/auth",
"shared-data-access-services": {
"projectType": "library",
"root": "libs/shared/data-access/services",
"sourceRoot": "libs/shared/data-access/services/src",
"prefix": "nx-ng-mfe",
"targets": {
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/libs/shared/data-access/services"],
"options": {
"jestConfig": "libs/shared/data-access/services/jest.config.ts",
"passWithNoTests": true
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"libs/shared/data-access/services/**/*.ts",
"libs/shared/data-access/services/**/*.html"
]
}
}
},
"tags": []
},
"shared-ui": "libs/shared-ui",
"static-host": "apps/static-host",
"static-host-e2e": "apps/static-host-e2e",
"todo": "apps/todo",
"todo-e2e": "apps/todo-e2e",
"todo-feature": "libs/todo/feature"
}
}