[O] Disable strict property initialization check

This commit is contained in:
Hykilpikonna
2019-11-02 19:37:13 -04:00
parent cd2dff5559
commit b37de9cf24
2 changed files with 6 additions and 2 deletions
@@ -6,9 +6,10 @@ import moment from 'moment';
}) })
export default class AssignmentEntry extends Vue export default class AssignmentEntry extends Vue
{ {
// @ts-ignore
@Prop({required: true}) assignment: Assignment; @Prop({required: true}) assignment: Assignment;
@Prop({default: false})
/** /**
* Format a date to the displayed format * Format a date to the displayed format
* *
+4 -1
View File
@@ -24,7 +24,10 @@
"dom", "dom",
"dom.iterable", "dom.iterable",
"scripthost" "scripthost"
] ],
// Custom
"strictPropertyInitialization": false
}, },
"include": [ "include": [
"src/**/*.ts", "src/**/*.ts",