-
Notifications
You must be signed in to change notification settings - Fork 0
/
angular.json
51 lines (51 loc) · 1.46 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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"cli": {
"analytics": false,
"defaultCollection": "@angular-eslint/schematics"
},
"version": 1,
"newProjectRoot": "projects",
"projects": {
"handy-angular": {
"projectType": "library",
"root": "projects/handy-angular",
"sourceRoot": "projects/handy-angular/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/handy-angular/ng-package.json",
"tsConfig": "projects/handy-angular/tsconfig.lib.json"
},
"configurations": {
"production": {
"tsConfig": "projects/handy-angular/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/handy-angular/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-builders/jest:run",
"options": {
"tsConfig": "projects/handy-angular/tsconfig.spec.json"
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/handy-angular/**/*.ts",
"projects/handy-angular/**/*.html"
]
}
}
}
}
},
"defaultProject": "handy-angular"
}