We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35cdaf4 commit c59c97aCopy full SHA for c59c97a
src/material-moment-adapter/adapter/moment-date-adapter.ts
@@ -65,7 +65,7 @@ export class MomentDateAdapter extends DateAdapter<Moment> {
65
// while avoiding mutating the original object passed to us. Just calling `.locale(...)` on the
66
// input would mutate the object.
67
68
- private _localeData: {
+ private _localeData!: {
69
firstDayOfWeek: number;
70
longMonths: string[];
71
shortMonths: string[];
src/material-moment-adapter/tsconfig.json
@@ -4,6 +4,7 @@
4
"compilerOptions": {
5
"rootDir": "..",
6
"baseUrl": ".",
7
+ "strictPropertyInitialization": true,
8
"paths": {
9
"@angular/cdk/*": ["../cdk/*"],
10
"@angular/material/*": ["../material/*"],
0 commit comments