It was automatically removing the `standalone` property from components, breaking the build.
@@ -39,6 +39,9 @@
"style": "kebab-case"
}
],
+ "@angular-eslint/prefer-standalone": [
+ "off"
+ ],
"@angular-eslint/no-input-rename": "off",
"@typescript-eslint/array-type": [
"error",
@@ -14,6 +14,7 @@ import { NotificationService } from '../../providers/notification/notification.s
@Directive({
selector: '[vdrBaseNav]',
+ standalone: false,
})
// eslint-disable-next-line @angular-eslint/directive-class-suffix
export class BaseNavComponent implements OnInit, OnDestroy {