Add more folders to strict compile (#8954)

* add more folders to strictire compile, add more strict compile options

* update ci

* remove unnecessary assertion
This commit is contained in:
Anthony Dresser
2020-01-27 16:26:49 -08:00
committed by GitHub
parent fefe1454de
commit 64929de09d
81 changed files with 630 additions and 644 deletions

View File

@@ -21,16 +21,16 @@ import { IThemeService } from 'vs/platform/theme/common/themeService';
template: ''
})
export class SelectBox extends AngularDisposable implements OnInit, OnChanges {
private _selectbox: vsSelectBox;
private _selectbox!: vsSelectBox;
@Input() options: string[];
@Input() selectedOption: string;
@Input() options!: string[];
@Input() selectedOption!: string;
@Input() onlyEmitOnChange = false;
@Input('aria-label') ariaLabel: string;
@Input('aria-label') ariaLabel?: string;
@Output() onDidSelect = new EventEmitter<ISelectData>();
private _previousVal: string;
private _previousVal?: string;
constructor(
@Inject(forwardRef(() => ElementRef)) private _el: ElementRef,