You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(schematics): module imports not generated for schematics (#16787)
Currently in some scenarios the CLI project has a different TypeScript version
than the `typescript` version used in the `@schematics/angular` package.
This causes AST parsing & transformations to be broken due to the shifted
values (e.g. in the `SyntaxKind` enum). Previously we solved this by always
using the `typescript` version brought in by the `@schematics/angular` package,
but this no longer works as of v8.0.0 CLI because the `@schematics/angular`
package now vendors `typescript` instead of having an explicit version as
dependency.
angular/angular-cli@bf1c069
0 commit comments