-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathangular.json
73 lines (73 loc) · 2.04 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
{
"version": 2,
"projects": {
"ng-mockito": {
"projectType": "library",
"root": "libs/ng-mockito/ng-mockito",
"sourceRoot": "libs/ng-mockito/ng-mockito/src",
"prefix": "qp",
"targets": {
"build": {
"executor": "@nrwl/angular:package",
"options": {
"tsConfig": "libs/ng-mockito/ng-mockito/tsconfig.lib.json",
"project": "libs/ng-mockito/ng-mockito/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "libs/ng-mockito/ng-mockito/tsconfig.lib.prod.json"
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["libs/ng-mockito/ng-mockito/src/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"options": {
"jestConfig": "libs/ng-mockito/ng-mockito/jest.config.ts",
"passWithNoTests": true
},
"outputs": ["coverage/libs/ng-mockito/ng-mockito"]
}
},
"generators": {
"@schematics/angular:component": {
"style": "scss"
}
},
"tags": ["scope:ng-mockito"]
},
"ng-mockito-integration": {
"projectType": "library",
"root": "libs/ng-mockito/integration",
"sourceRoot": "libs/ng-mockito/integration/src",
"prefix": "qp",
"targets": {
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["libs/ng-mockito/integration/src/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"options": {
"jestConfig": "libs/ng-mockito/integration/jest.config.ts",
"passWithNoTests": true
},
"outputs": ["coverage/libs/ng-mockito/integration"]
}
},
"generators": {
"@schematics/angular:component": {
"style": "scss"
}
},
"tags": ["scope:ng-mockito"]
}
}
}