forked from mari8i/ngx-auth-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular.json
45 lines (45 loc) · 1.68 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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"cli": {
"analytics": "ddbbb158-dcc9-4d82-9f88-9a07cb0db520",
"schematicCollections": ["@angular-eslint/schematics"]
},
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ngx-auth-utils": {
"projectType": "library",
"root": "projects/ngx-auth-utils",
"sourceRoot": "projects/ngx-auth-utils/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/ngx-auth-utils/tsconfig.lib.json",
"project": "projects/ngx-auth-utils/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/ngx-auth-utils/tsconfig.lib.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/ngx-auth-utils/src/test.ts",
"tsConfig": "projects/ngx-auth-utils/tsconfig.spec.json",
"karmaConfig": "projects/ngx-auth-utils/karma.conf.js"
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["projects/**/*.ts"]
}
}
}
}
}
}