virtual-marat
virtual-marat
I am add in bower.json: ``` "moment-precise-range": "codebox/moment-precise-range#latest" ``` and add in wiredep conf: ``` overrides: { "moment-precise-range": { "main": [ "moment-precise-range.js" ], "dependencies": { "moment": "*" } } }...
I solved this problem with the setting - I marked the modules as isolated in the compiler options: ``` monaco.languages.typescript.javascriptDefaults.setCompilerOptions({ isolatedModules: true, }); ``` But I'm not sure, if this...