Jason
Jason
When using swc, there is an option for providing the [filename](https://github.com/swc-project/swc/blob/main/node-swc/src/types.ts#L238-L252) which can be passed down to plugins, but when using the swc-loader, the filename is not passed automatically as...
Updating the section of the readme where it mentions redirects because there is a catch. If a user tries to copy the example given - it may not work right...
### Description Hello, starting a new project and trying to use SwaggerProvider and following the getting started docs I get an error of: ``` The type provider 'SwaggerProvider.OpenApiClientTypeProvider' reported an...
### Description When calling a request that specifies FormData as the type and has fields that can be Option types, when specifying a value like `Some true` or `Some 6`...
Makes the return type of `static getFullyQualifiedName(): string` be a string literal instead of just the string type. This helps make the return type be more specific instead of just...
Trying to compile this example that uses typescript's function overloading: ```ts class Vector { foo(x: number): number foo(x: string): number foo(x: number | string): number { return 9 } }...
Hello, I've encountered an uncaught error when trying to compile and run this code. ```js class Vector { add() { return 4 } } const foo = new Vector() Porffor.miniLog(foo.add())...