-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathangular.json
97 lines (97 loc) · 3.08 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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"angular-common-components": {
"projectType": "library",
"schematics": {
"@schematics/angular:component": {
"style": "css"
}
},
"root": "",
"sourceRoot": "projects/angular-common-components/src",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"extractCss": true,
"options": {
"tsConfig": "projects/angular-common-components/tsconfig.lib.json",
"project": "projects/angular-common-components/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/angular-common-components/tsconfig.lib.prod.json"
}
}
},
"test": {
"builder": "@angular-builders/jest:run",
"extractCss": true,
"options": {
"jestConfig": "projects/angular-common-components/jest.config.js",
"tsConfig": "projects/angular-common-components/tsconfig.spec.json",
"setupFile": "projects/angular-common-components/src/test-setup.ts"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"extractCss": true,
"options": {
"tsConfig": [
"projects/angular-common-components/tsconfig.lib.json",
"projects/angular-common-components/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
},
"angular-common-services": {
"projectType": "library",
"root": "projects/angular-common-services",
"sourceRoot": "projects/angular-common-services/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/angular-common-services/tsconfig.lib.json",
"project": "projects/angular-common-services/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/angular-common-services/tsconfig.lib.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/angular-common-services/src/test.ts",
"tsConfig": "projects/angular-common-services/tsconfig.spec.json",
"karmaConfig": "projects/angular-common-services/karma.conf.js"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"projects/angular-common-services/tsconfig.lib.json",
"projects/angular-common-services/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
}
},
"cli": {
"analytics": false
}
}