Volen

Results 30 comments of Volen

Hey! I've received a lot of requests for this feature, so I've decided to start working on an 'unplugin' plugin for this library ahead of the rewrite. This way, you'll...

Sadly no, this is currently impossible to do. You can use the `Resolve` type, but that will return a single error instead of all of them like how it is...

You could configure webpack to not bundle the library with the `externals` option, I haven't tried it for myself but it should work. The value can be anything since the...

I think this is a good idea, but it has to be made optional. For now you could use try/catch and raw errors, it'll give you the specific value and...

Looks like tsx uses esbuild, support for esbuild will come really soon!

Hi! I think the easiest way to do it would be to setup typescript + ts-patch to transpile your code to javascript in a specific folder, and then let babel...

Hi! I think this is a great idea, I'll implement it in the next version!

Hello! The `fnAst` argument is actually a `ts.FunctionExpression` and not a `ts.FunctionDeclaration`, you have to call `updateFunctionExpression` instead and then call `createExpressionStatement`: ```ts function $asyncify(fn: Function) { return $$raw!((ctx: RawContext,...

Thank you for the PR! It looks like you've changed the line endings of the file though, could you please use the line endings defined in the .prettierrc.json file? Also,...