-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
build: update to TypeScript 5.2 and Angular 17 #27792
Conversation
f7b6614
to
4c92e51
Compare
Updates the repo to TS 5.2 and Angular 17.
return pathToFileURL(path.join(runfiles.resolveWorkspaceRelative('./node_modules'), url)); | ||
return pathToFileURL( | ||
path.join(runfiles.resolveWorkspaceRelative('./node_modules'), url), | ||
) as URL; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That seems surprising, pathToFileURL
should return an URL
IIRC
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It returns its own URL type that used to overlap with the built-in one, but it doesn't anymore.
In angular#27792 the schematics were updated to use the new default `application` builder instead of the `browser` builder. According to the CLI team we'll have to support both so these changes update our existing logic to account for both cases.
In angular#27792 the schematics were updated to use the new default `application` builder instead of the `browser` builder. According to the CLI team we'll have to support both so these changes update our existing logic to account for both cases.
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Updates the repo to TS 5.2 and Angular 17.