-
Notifications
You must be signed in to change notification settings - Fork 0
/
angular.json
138 lines (138 loc) · 4.45 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"@ngx-toolset/template-type-checker": {
"projectType": "library",
"root": "projects/template-type-checker",
"sourceRoot": "projects/template-type-checker/src",
"prefix": "ngx-toolset",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/template-type-checker/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/template-type-checker/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/template-type-checker/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/template-type-checker/src/test.ts",
"tsConfig": "projects/template-type-checker/tsconfig.spec.json",
"karmaConfig": "projects/template-type-checker/karma.conf.js"
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/template-type-checker/**/*.ts",
"projects/template-type-checker/**/*.html"
]
}
}
}
},
"@ngx-toolset/api-token-interceptor": {
"projectType": "library",
"root": "projects/api-token-interceptor",
"sourceRoot": "projects/api-token-interceptor/src",
"prefix": "ngx-toolset",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/api-token-interceptor/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/api-token-interceptor/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/api-token-interceptor/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/api-token-interceptor/src/test.ts",
"tsConfig": "projects/api-token-interceptor/tsconfig.spec.json",
"karmaConfig": "projects/api-token-interceptor/karma.conf.js"
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/api-token-interceptor/**/*.ts",
"projects/api-token-interceptor/**/*.html"
]
}
}
}
},
"@ngx-toolset/date-interceptors": {
"projectType": "library",
"root": "projects/date-interceptors",
"sourceRoot": "projects/date-interceptors/src",
"prefix": "ngx-toolset",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/date-interceptors/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/date-interceptors/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/date-interceptors/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/date-interceptors/src/test.ts",
"tsConfig": "projects/date-interceptors/tsconfig.spec.json",
"karmaConfig": "projects/date-interceptors/karma.conf.js"
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/date-interceptors/**/*.ts",
"projects/date-interceptors/**/*.html"
]
}
}
}
}
},
"cli": {
"analytics": false
},
"schematics": {
"@angular-eslint/schematics:application": {
"setParserOptionsProject": true
},
"@angular-eslint/schematics:library": {
"setParserOptionsProject": true
}
}
}