Angular Compiler CLI (ngtsc) Architecture
Overview
The packages/compiler-cli package contains the Angular Compiler (Ivy), often referred to as ngtsc. It is a wrapper around the TypeScript compiler (tsc) that extends it with Angular-specific capabilities.
The core goal of ngtsc is to compile Angular decorators (like @Component, @Directive, @Pipe) into static properties on the class (Ivy instructions, e.g., static ɵcmp = ...). It also performs template type checking and ahead-of-time (AOT) compilation.
Mental Model
The compiler is designed as a lazy, incremental, and partial compilation pipeline.
- Wrapper Pattern:
NgtscProgram wraps the standard ts.Program. It intercepts calls to act as a drop-in replacement for standard tooling.
- Traits System: Every class with an Angular decorator is considered a "Trait". The compiler manages the state of these traits through a state machine:
- Pending: Detected but not processed.
- Analyzed: Metadata extracted, template parsed (but dependencies not yet linked).
- Resolved: Dependencies (directives/pipes in template) resolved, import cycles handled.
- Skipped: Not an Angular class.
- Lazy Analysis: Analysis only happens when necessary (e.g., when diagnostics are requested or emit is prepared).
- Output AST: The compiler generates an intermediate "Output AST" (
o.Expression) for the generated code, which is then translated into TypeScript AST nodes during the emit phase.
Key Subsystems
1. Core Orchestration (ngtsc/core)
NgtscProgram: The public API implementing api.Program. It manages the ts.Program and the NgCompiler.
NgCompiler: The brain of the compiler. It orchestrates the compilation phases (Analysis, Resolution, Type Checking, Emit). It holds the TraitCompiler.
2. Trait Compilation (ngtsc/transform)
TraitCompiler: Manages the lifecycle of "Traits". It iterates over source files, identifies decorated classes, and delegates to the appropriate DecoratorHandler.
Trait: A state container for a class, holding its handler, analysis results, and resolution results.
3. Decorator Handlers (ngtsc/annotations)
DecoratorHandler: An interface for handling specific decorators.
ComponentDecoratorHandler: The most complex handler. It:
- Extracts metadata (selector, inputs, outputs).
- Parses the template.
- Resolves used directives and pipes (
R3TargetBinder).
- Generates the
ɵcmp instruction.
DirectiveDecoratorHandler, PipeDecoratorHandler, NgModuleDecoratorHandler: Handle their respective decorators.
4. Template Type Checking (ngtsc/typecheck)
TemplateTypeChecker: Generates "Type Check Blocks" (TCBs). A TCB is a block of TypeScript code that represents the template's logic in a way tsc can understand and check for errors.
TypeCheckBlock: The actual generated code that validates bindings, events, and structural directives.
5. Metadata & Scope (ngtsc/metadata, ngtsc/scope)
MetadataReader: Reads Angular metadata from source files (using LocalMetadataRegistry) and .d.ts files (using DtsMetadataReader).
ScopeRegistry: Determines the "compilation scope" of a component (which directives/pipes are available to it), handling NgModule transitive exports and Standalone Component imports.
6. Emit & Transformation (ngtsc/transform)
ivyTransformFactory: A TypeScript transformer factory.
IvyCompilationVisitor: Visits classes, triggers compilation via TraitCompiler, and collects the Output AST.
IvyTransformationVisitor: Translates the Output AST into TypeScript AST, injects the static ɵ... fields, and removes the original decorators.
Compilation Phases
- Construction:
NgtscProgram creates NgCompiler, which sets up all registries and the TraitCompiler.
- Analysis (
analyzeSync):
- The
TraitCompiler scans files.
DecoratorHandlers extract metadata and parse templates.
- No cross-file resolution happens here (allowing for parallelism and caching).
- Resolution (
resolve):
TraitCompiler resolves traits.
- Components link their templates to specific Directives and Pipes (found via
ScopeRegistry).
- Import cycles are detected and handled (e.g., via "remote scoping").
- Type Checking:
TemplateTypeChecker creates TCBs for all components.
- TypeScript diagnostics are retrieved for these TCBs.
- Emit (
prepareEmit):
ivyTransformFactory is created.
- TS
emit is called.
- The transformers run, injecting the compiled Ivy instructions into the JS/DTS output.
Important File Locations
packages/compiler-cli/src/ngtsc/program.ts: Entry point (NgtscProgram).
packages/compiler-cli/src/ngtsc/core/src/compiler.ts: Core logic (NgCompiler).
packages/compiler-cli/src/ngtsc/transform/src/trait.ts: Trait state machine.
packages/compiler-cli/src/ngtsc/annotations/component/src/handler.ts: Component compilation logic.
packages/compiler-cli/src/ngtsc/typecheck/src/template_type_checker.ts: Type checking logic.
packages/compiler-cli/src/ngtsc/transform/src/transform.ts: AST transformation logic.
1---2name: reference-compiler-cli3description: Explains the mental model and architecture of the code under `packages/compiler-cli`. You MUST use this skill any time you plan to work with code in `packages/compiler-cli`4---5
6# Angular Compiler CLI (`ngtsc`) Architecture
7
8## Overview
9
10The `packages/compiler-cli` package contains the Angular Compiler (Ivy), often referred to as `ngtsc`. It is a wrapper around the TypeScript compiler (`tsc`) that extends it with Angular-specific capabilities.
11
12The core goal of `ngtsc` is to compile Angular decorators (like `@Component`, `@Directive`, `@Pipe`) into static properties on the class (Ivy instructions, e.g., `static ɵcmp = ...`). It also performs template type checking and ahead-of-time (AOT) compilation.
13
14## Mental Model
15
16The compiler is designed as a **lazy, incremental, and partial** compilation pipeline.
17
181. **Wrapper Pattern**: `NgtscProgram` wraps the standard `ts.Program`. It intercepts calls to act as a drop-in replacement for standard tooling.
192. **Traits System**: Every class with an Angular decorator is considered a "Trait". The compiler manages the state of these traits through a state machine:
20 - **Pending**: Detected but not processed.
21 - **Analyzed**: Metadata extracted, template parsed (but dependencies not yet linked).
22 - **Resolved**: Dependencies (directives/pipes in template) resolved, import cycles handled.
23 - **Skipped**: Not an Angular class.
243. **Lazy Analysis**: Analysis only happens when necessary (e.g., when diagnostics are requested or emit is prepared).
254. **Output AST**: The compiler generates an intermediate "Output AST" (`o.Expression`) for the generated code, which is then translated into TypeScript AST nodes during the emit phase.
26
27## Key Subsystems
28
29### 1. Core Orchestration (`ngtsc/core`)
30
31- **`NgtscProgram`**: The public API implementing `api.Program`. It manages the `ts.Program` and the `NgCompiler`.
32- **`NgCompiler`**: The brain of the compiler. It orchestrates the compilation phases (Analysis, Resolution, Type Checking, Emit). It holds the `TraitCompiler`.
33
34### 2. Trait Compilation (`ngtsc/transform`)
35
36- **`TraitCompiler`**: Manages the lifecycle of "Traits". It iterates over source files, identifies decorated classes, and delegates to the appropriate `DecoratorHandler`.
37- **`Trait`**: A state container for a class, holding its handler, analysis results, and resolution results.
38
39### 3. Decorator Handlers (`ngtsc/annotations`)
40
41- **`DecoratorHandler`**: An interface for handling specific decorators.
42- **`ComponentDecoratorHandler`**: The most complex handler. It:
43 - Extracts metadata (selector, inputs, outputs).
44 - Parses the template.
45 - Resolves used directives and pipes (`R3TargetBinder`).
46 - Generates the `ɵcmp` instruction.
47- **`DirectiveDecoratorHandler`**, **`PipeDecoratorHandler`**, **`NgModuleDecoratorHandler`**: Handle their respective decorators.
48
49### 4. Template Type Checking (`ngtsc/typecheck`)
50
51- **`TemplateTypeChecker`**: Generates "Type Check Blocks" (TCBs). A TCB is a block of TypeScript code that represents the template's logic in a way `tsc` can understand and check for errors.
52- **`TypeCheckBlock`**: The actual generated code that validates bindings, events, and structural directives.
53
54### 5. Metadata & Scope (`ngtsc/metadata`, `ngtsc/scope`)
55
56- **`MetadataReader`**: Reads Angular metadata from source files (using `LocalMetadataRegistry`) and `.d.ts` files (using `DtsMetadataReader`).
57- **`ScopeRegistry`**: Determines the "compilation scope" of a component (which directives/pipes are available to it), handling `NgModule` transitive exports and Standalone Component imports.
58
59### 6. Emit & Transformation (`ngtsc/transform`)
60
61- **`ivyTransformFactory`**: A TypeScript transformer factory.
62- **`IvyCompilationVisitor`**: Visits classes, triggers compilation via `TraitCompiler`, and collects the Output AST.
63- **`IvyTransformationVisitor`**: Translates the Output AST into TypeScript AST, injects the `static ɵ...` fields, and removes the original decorators.
64
65## Compilation Phases
66
671. **Construction**: `NgtscProgram` creates `NgCompiler`, which sets up all registries and the `TraitCompiler`.
682. **Analysis** (`analyzeSync`):
69 - The `TraitCompiler` scans files.
70 - `DecoratorHandler`s extract metadata and parse templates.
71 - No cross-file resolution happens here (allowing for parallelism and caching).
723. **Resolution** (`resolve`):
73 - `TraitCompiler` resolves traits.
74 - Components link their templates to specific Directives and Pipes (found via `ScopeRegistry`).
75 - Import cycles are detected and handled (e.g., via "remote scoping").
764. **Type Checking**:
77 - `TemplateTypeChecker` creates TCBs for all components.
78 - TypeScript diagnostics are retrieved for these TCBs.
795. **Emit** (`prepareEmit`):
80 - `ivyTransformFactory` is created.
81 - TS `emit` is called.
82 - The transformers run, injecting the compiled Ivy instructions into the JS/DTS output.
83
84## Important File Locations
85
86- `packages/compiler-cli/src/ngtsc/program.ts`: Entry point (`NgtscProgram`).
87- `packages/compiler-cli/src/ngtsc/core/src/compiler.ts`: Core logic (`NgCompiler`).
88- `packages/compiler-cli/src/ngtsc/transform/src/trait.ts`: Trait state machine.
89- `packages/compiler-cli/src/ngtsc/annotations/component/src/handler.ts`: Component compilation logic.
90- `packages/compiler-cli/src/ngtsc/typecheck/src/template_type_checker.ts`: Type checking logic.
91- `packages/compiler-cli/src/ngtsc/transform/src/transform.ts`: AST transformation logic.