Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🚑 Upgrading Angular to v16 #52

Open
wants to merge 1 commit into
base: 1-auth-finished
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .browserslistrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
# You can see what browsers were selected by your queries by running:
# npx browserslist

> 0.5%
last 2 versions
Firefox ESR
not dead
not IE 9-11 # For IE 9-11 support, remove 'not'.
last 2 Chrome versions
last 1 Firefox version
last 2 Edge major versions
last 2 Safari major versions
last 2 iOS major versions
Firefox ESR
12 changes: 8 additions & 4 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
"namedChunks": true,
"allowedCommonJsDependencies": [
"moment"
]
},
"configurations": {
"production": {
Expand Down Expand Up @@ -106,7 +109,6 @@
}
}
},
"defaultProject": "angular-ngrx-course",
"schematics": {
"@ngrx/schematics:component": {
"prefix": "",
Expand All @@ -117,7 +119,9 @@
}
},
"cli": {
"defaultCollection": "@ngrx/schematics",
"analytics": "f55f4a8f-5057-4bd1-bc62-645d74960959"
"analytics": "f55f4a8f-5057-4bd1-bc62-645d74960959",
"schematicCollections": [
"@ngrx/schematics"
]
}
}
Loading