Skip to content

Commit cf2b776

Browse files
Complete Angular v20 upgrade with all dependencies updated
Co-authored-by: michaelschoenbaechler <49410646+michaelschoenbaechler@users.noreply.github.com>
1 parent 8ef5aaa commit cf2b776

File tree

26 files changed

+3930
-3007
lines changed

26 files changed

+3930
-3007
lines changed

.browserslistrc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
# You can see what browsers were selected by your queries by running:
99
# npx browserslist
1010

11-
Chrome >=79
12-
ChromeAndroid >=79
13-
Firefox >=70
14-
Edge >=79
15-
Safari >=14
16-
iOS >=14
11+
Chrome >=107
12+
ChromeAndroid >=107
13+
Firefox >=104
14+
Edge >=107
15+
Safari >=16
16+
iOS >=16

.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@
5252
],
5353
"import/newline-after-import": "error",
5454
"import/order": "error",
55-
"unused-imports/no-unused-imports": "error"
55+
"unused-imports/no-unused-imports": "error",
56+
"@angular-eslint/prefer-inject": "off"
5657
}
5758
},
5859
{

angular.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,30 @@
156156
"@ionic/angular-toolkit:page": {
157157
"styleext": "scss",
158158
"standalone": true
159+
},
160+
"@schematics/angular:component": {
161+
"type": "component"
162+
},
163+
"@schematics/angular:directive": {
164+
"type": "directive"
165+
},
166+
"@schematics/angular:service": {
167+
"type": "service"
168+
},
169+
"@schematics/angular:guard": {
170+
"typeSeparator": "."
171+
},
172+
"@schematics/angular:interceptor": {
173+
"typeSeparator": "."
174+
},
175+
"@schematics/angular:module": {
176+
"typeSeparator": "."
177+
},
178+
"@schematics/angular:pipe": {
179+
"typeSeparator": "."
180+
},
181+
"@schematics/angular:resolver": {
182+
"typeSeparator": "."
159183
}
160184
}
161185
}

0 commit comments

Comments
 (0)