🐞 Bug report
Command (mark with an x)
Is this a regression?
Sort of, new lint error introduced in the ng update or ng new in v13.
declare const require: {
context(path: string, deep?: boolean, filter?: RegExp): {
keys(): string[];
<T>(id: string): T;
};
};
should be
declare const require: {
context(path: string, deep?: boolean, filter?: RegExp): {
<T>(id: string): T;
keys(): string[];
};
};
🐞 Bug report
Command (mark with an
x)Is this a regression?
Sort of, new lint error introduced in the
ng updateorng newin v13.should be