Dan
Dan
> Any update on this issue? I doubt there is, I've no need for Babel in my current role and won't find the time to contribute (I just got the...
Any progress with this issue? I've just ran into the same thing using Google's Artifact Registry. You use their `google-artifactregistry-auth` NPM module which updates `.npmrc` for you, so there's no...
Same problem for me mocking the `ManagementClient`, I think it's because auth0 add properties to the prototype using `Object.defineProperty`, where the getter of that property is binding the function when...
Hi all.. I've just come across this issue while looking for a solution to a different problem. I'm trying to perform custom marshalling for CSV data, where my data is...
I've found the problem! Essentially source maps must be emitted inline for WebStorm to pick it up and act on breakpoints accordingly. Attaching them as comments made everything work, however...
Ignore half of that last comment. You can't use `bin.js` because it spawns a new process which means this module hasn't registered the `.ts` or `.tsx` hooks to `require.extensions[]`. I...
The first line of this function [Line 56](https://github.com/danielmoore/ts-babel-node/blob/master/index.js#L56) seems to be the culprit: ```js function compile(base, code, filename) { var sourcemap = convertSourceMap.fromMapFileSource(code, '.').toObject(); code = convertSourceMap.removeMapFileComments(code); var babelOutput =...
I've found out what's caused the issue in the first place. I was using the most recent version of ts-node 3.2.0, ts-babel-node requires ^3.0.6. In 3.1.0 there was a change...
Ok, you can't upgrade to 3.2.0 because there's a bug where it doesn't work for `.tsx` files. https://github.com/TypeStrong/ts-node/issues/393 Will leave this here for now, wait until ts-node have fixed their...
Pretty sure the creator isn't active on this anymore, I've had a Pull Request open since July which hasn't been looked at. I'd say fork my fork https://github.com/dan-j/ts-babel-node (don't use...