zlk89
zlk89
See the output file here: https://github.com/stephenh/ts-proto/blob/e4351d4304be2d2ce7b95e74e2c5f2383d6754e5/integration/grpc-web/example.ts#L847-L850 It sets `code` and `metadata` into the Error object, but it would be great to export a better type for the Error object, so...
Reproducible steps: 1. Clone to this repro: https://github.com/zlk89/webpack-reprods/tree/tsconfig-paths-webpack-plugin-issue 2. `yarn install` 3. `yarn start` - let it build and store the cache 4. change a file's extension: `mv src/utils.ts src/utils.tsx`...
Can we bump @babel/runtime to 7.12? Current version will get error when using webpack 5. more context: https://github.com/babel/babel/issues/12058
The follow example returns `undefined`: ``` import safeStringify from "fast-safe-stringify"; safeStringify(undefined) // -> returns undefined ``` But the type definition only specifies `string` as return type, we should update it...