Mael Le Guen
Mael Le Guen
Adding globally installed callgraph's `node_modules` directory to NODE_PATH, without having to install anything else, or creating a .babelrc file, solved this issue for me. For example, on Windows: ```bash export...
The only way I found to avoid this error is to add the following line in index.js: ```js timestamp.default = timestamp; ``` and to switch back in my code to:...
@jonschlinkert I do not see at the moment how to do it without impacting too much the current behavior of index.js.
@fregante OK, thank you. I will experiment on this in the coming days to see if I can do a PR.
PR submitted
@fregante Could you be a little more explicit about why it should never be used? Isn't it the standard typescript way to access a commonjs module's module.export (as in [typescript...
I did not look at the right part of the typescript documentation. Thank you @fregante for pointing this. The recommanded syntax for commonjs module is indeed: ``` import time =...