Change8

Migrating to Angular vsix-22.0.0

Version vsix-22.0.0 introduces 2 breaking changes. This guide details how to update your code.

Released: 6/3/2026

2
Breaking Changes
2
Migration Steps
1
Affected Symbols

⚠️ Check Your Code

If you use any of these symbols, you need to read this guide:

language-service

Breaking Changes

Issue #1

The bundled TypeScript version is updated to 6.0, which defaults to `strict: true`. To maintain previous behavior, explicitly set `"strict": false` in your `tsconfig.json`.

Issue #2

The bundled TypeScript version is updated to 6.0, which includes breaking changes from TypeScript itself.

Migration Steps

  1. 1
    If you rely on TypeScript defaults, review your `tsconfig.json` and explicitly set `"strict": false` if you do not want the new TypeScript 6.0 defaults.
  2. 2
    Alternatively, configure the `tsdk` in your configuration to use the workspace version of TypeScript.

Release Summary

This release updates the bundled TypeScript to version 6.0, introducing stricter defaults, and adds several new language service features including template inlay hints and support for `@Input` transforms.

Need More Details?

View the full release notes and all changes for Angular vsix-22.0.0.

View Full Changelog