Fix test compile error from suppressImplicitAnyIndexErrors change

This commit is contained in:
Daniel Imms 2019-07-03 10:18:45 -07:00
parent 960f567da7
commit df55d2d939

View file

@ -29,7 +29,7 @@ suite('Debug - ANSI Handling', () => {
const colors: { [id: string]: string; } = {};
for (let color in ansiColorMap) {
colors[color] = ansiColorMap[color].defaults.dark;
colors[color] = <any>ansiColorMap[color].defaults.dark;
}
const testTheme = new TestTheme(colors);
themeService = new TestThemeService(testTheme);