-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular.json
111 lines (111 loc) · 3 KB
/
angular.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"version": 1,
"projects": {
"core-data": {
"projectType": "library",
"root": "libs/core-data",
"sourceRoot": "libs/core-data/src",
"prefix": "workspace",
"architect": {
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"libs/core-data/tsconfig.lib.json",
"libs/core-data/tsconfig.spec.json"
],
"exclude": ["**/node_modules/**", "!libs/core-data/**"]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "libs/core-data/jest.config.js",
"tsConfig": "libs/core-data/tsconfig.spec.json",
"setupFile": "libs/core-data/src/test-setup.ts"
}
}
},
"schematics": {
"@nrwl/angular:component": {
"styleext": "scss"
}
}
},
"core-state": {
"projectType": "library",
"root": "libs/core-state",
"sourceRoot": "libs/core-state/src",
"prefix": "workspace",
"architect": {
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"libs/core-state/tsconfig.lib.json",
"libs/core-state/tsconfig.spec.json"
],
"exclude": ["**/node_modules/**", "!libs/core-state/**"]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "libs/core-state/jest.config.js",
"tsConfig": "libs/core-state/tsconfig.spec.json",
"setupFile": "libs/core-state/src/test-setup.ts"
}
}
},
"schematics": {
"@nrwl/angular:component": {
"styleext": "scss"
}
}
},
"material": {
"projectType": "library",
"root": "libs/material",
"sourceRoot": "libs/material/src",
"prefix": "workspace",
"architect": {
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"libs/material/tsconfig.lib.json",
"libs/material/tsconfig.spec.json"
],
"exclude": ["**/node_modules/**", "!libs/material/**"]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "libs/material/jest.config.js",
"tsConfig": "libs/material/tsconfig.spec.json",
"setupFile": "libs/material/src/test-setup.ts"
}
}
},
"schematics": {
"@nrwl/angular:component": {
"styleext": "scss"
}
}
}
},
"cli": {
"defaultCollection": "@nrwl/angular"
},
"schematics": {
"@nrwl/angular:application": {
"unitTestRunner": "jest",
"e2eTestRunner": "cypress"
},
"@nrwl/angular:library": {
"unitTestRunner": "jest"
}
},
"defaultProject": "core-data"
}