angular icon indicating copy to clipboard operation
angular copied to clipboard

[note] NativeScript v9 will support ES Modules; if @Component uses moduleId, remove it

Open NathanWalker opened this issue 5 months ago • 0 comments

This is a general note regarding upcoming NativeScript v9.

Some Angular projects use moduleId in the Component metadata, eg:

@Component({
  moduleId: module.id,
  // ...
})

This hasn't been needed since Angular 17 so it's safe to remove now. With NativeScript v9, that will throw an error if present.

NathanWalker avatar Sep 15 '25 17:09 NathanWalker