Skip to content

Commit 9c0fc95

Browse files
committed
upgrade to angular 13
1 parent 718a302 commit 9c0fc95

File tree

4 files changed

+19070
-9011
lines changed

4 files changed

+19070
-9011
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,5 @@ testem.log
4444
# System Files
4545
.DS_Store
4646
Thumbs.db
47+
48+
.angular/**

angular.json

+20-9
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
"projects": {
66
"hasap": {
77
"projectType": "application",
8-
"schematics": {},
8+
"schematics": {
9+
"@schematics/angular:application": {
10+
"strict": true
11+
}
12+
},
913
"root": "",
1014
"sourceRoot": "src",
1115
"prefix": "app",
@@ -61,19 +65,28 @@
6165
],
6266
"serviceWorker": true,
6367
"ngswConfigPath": "ngsw-config.json"
68+
},
69+
"development": {
70+
"buildOptimizer": false,
71+
"optimization": false,
72+
"vendorChunk": true,
73+
"extractLicenses": false,
74+
"sourceMap": true,
75+
"namedChunks": true
6476
}
6577
}
6678
},
6779
"serve": {
6880
"builder": "@angular-devkit/build-angular:dev-server",
69-
"options": {
70-
"browserTarget": "hasap:build"
71-
},
7281
"configurations": {
7382
"production": {
7483
"browserTarget": "hasap:build:production"
84+
},
85+
"development": {
86+
"browserTarget": "hasap:build:development"
7587
}
76-
}
88+
},
89+
"defaultConfiguration": "development"
7790
},
7891
"extract-i18n": {
7992
"builder": "@angular-devkit/build-angular:extract-i18n",
@@ -108,9 +121,7 @@
108121
"tsconfig.spec.json",
109122
"e2e/tsconfig.json"
110123
],
111-
"exclude": [
112-
"**/node_modules/**"
113-
]
124+
"exclude": ["**/node_modules/**"]
114125
}
115126
},
116127
"e2e": {
@@ -136,4 +147,4 @@
136147
"cli": {
137148
"analytics": "be52f3a5-601b-4520-87da-b01b2b0f3ec9"
138149
}
139-
}
150+
}

0 commit comments

Comments
 (0)