-
Notifications
You must be signed in to change notification settings - Fork 12k
Add migration to change ts module to esnext #16094
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
Comments
We did those things in the migration to 8 I believe: angular-cli/packages/schematics/angular/migrations/update-8/differential-loading.ts Lines 154 to 158 in 7d1247b
angular-cli/packages/schematics/angular/migrations/update-8/update-lazy-module-paths.ts Line 55 in 7d1247b
|
Yeah, but in v9 we are re-trigger the I have a PR, to address this; #16097 |
This migration coverts the TypeScript `module` compiler option to `esnext` or `commonjs` which is required when using `import()`. Fixes: #16094
This migration coverts the TypeScript `module` compiler option to `esnext` or `commonjs` which is required when using `import()`. Fixes: #16094
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. |
🐞 Bug report
Command (mark with an
x
)Description
In version 9 we are running the lazy-loading syntax migration to change the string based lazy-loading with
import()
.We however don't have a migration to ensure that that in the workspace tsconfig the module is set to
esnext
and this will failures at build time.🔥 Exception or Error
The text was updated successfully, but these errors were encountered: