Luke PS
Luke PS
@dependabot rebase
Is there any idea of how to tackle this? A lot of other `nom` packages are quickly dropping `commonjs` support and it would be great to support native ESM syntax...
1. It's still possible to import commonjs modules in ESM using `import gracefulFS from 'graceful-fs` which will fallback to whatever `module.exports` is, so I'm not sure this is an issue....
While I agree that it would be great to have static exports per platform - it's currently not how the module behaves with commonjs. The only way would be to...
@RyanZim Potentially the best way to do this then is to generate a file per platform and then add a test case to ensure that all the exposed functions from...
Yeah - there's no way to do dynamic binding of static exports. So either there's a postinstall step to select the right file at install time or export everything but...
I’ve fixed this in 4.0.0 where you watch all available file systems for changes.
Sorry only just had a chance to get back to this, I think it might be a bigger issue where we actually have to create a new `compilerHost` instance and...
So actually looking at it, you've done most of the work in `servicesHost.ts`, so it should be the case of just overriding those files. I'll see if I can create...
So I made some good progress yesterday and today and put together some simple demos using my fork of ts-loader. https://github.com/LukeSheard/ts-loader-memory-fs/tree/master As far as I can tell at this point...