Jack Works
Jack Works
> Regarding type-aware checking, there is a recommendation from the typescript-eslint team The lint itself does not base on type information, it only provides one more suggestion (``) if type...
Hi! I came back after months and reviewed what this PR did. We have upgraded our project to Lingui 5 and found that this lint is no longer needed. The...
Yes. This package relies on `extension-port-stream` and it relies on `readable-stream`. Three accesses to `process` (`process.stdin`, `process.stdout` and `process.nextTick`) happen in `readable-stream`. Is it possible to get rid of those...
webpack 5 (released in 2020) no longer provides polyfill for `process` (see https://webpack.js.org/migrate/5/#run-a-single-build-and-follow-advice) I currently replaces `process.stdin` (and `stdout`) to `null`, and `process.nextTick` to a polyfill, but I want to...
No activity recently, but we still keeping an eye on it, since [the pattern matching proposal](https://github.com/tc39/proposal-pattern-matching/) wants to cooperate with this one.
I believe you need help since the develop changed a lot recently. Please give me a list of PRs that needed to be merged into the develop branch and I'll...
is it possible to make a bridge from tsserver to lsp?
we met this problem. our code: ```js function copyLocalesJSON() { return src('**/locales/*.json', { cwd: fileURLToPath(PKG_PATH), ignore: ['**/node_modules/**', '**/dist/**'], }).pipe(dest(fileURLToPath(DIST_PATH))) } ``` and we have a lot of recursively linked node_modules....
Hi! I am interested in supporting rspack or turbopack, but that depends on the API they provide. I didn't check any of them yet.
I have made some progress, but now I'm stuck at `afterOptimizeChunkIds`. rspack does not have this hook, and I need it for `eagerChunkLoading`. Without this hook, I cannot generate usable...