TypeScript Playground does not seem to work the right way with this import:
import * as _ from "underscore";
until you try to use it, like:
const equalResult = _.isEqual('ABC', '123');
Then, it generates the error:
[ERR]: Executed JavaScript Failed:
[ERR]: Cannot use import statement outside a module
The playground seems to understand the library because it gives JSDoc, so I'm thinking that this can work, but how?