I tried to load a file like this and failed:
(function() {
window['MyCompany'] = {
component: {}
}
const foo: string = 'foo'
window['MyCompany'].component.foo = foo
}())
error: 'Missing initializer in const declaration'.
If I remove the type, i.e. from const foo: string = 'foo' to const foo = 'foo', it works.