Hyeseong Kim
Hyeseong Kim
Hi. I'm experimenting grats on my project, which is using `erasableSyntaxOnly` flag for Node.js' built-in TypeScript support. Currently, grats enum can only be used with TS enum and type aliases....
`vitest run` is failing here: https://github.com/cometkim/rescript-vitest/actions/runs/15218765005/job/42810167426 ``` >>>> Finish compiling 39 mseconds at getFinalError (file:///home/cometkim/Workspace/src/github.com/cometkim/rescript-vitest/node_modules/execa/lib/return/final-error.js:6:9) at makeError (file:///home/cometkim/Workspace/src/github.com/cometkim/rescript-vitest/node_modules/execa/lib/return/result.js:108:16) at getAsyncResult (file:///home/cometkim/Workspace/src/github.com/cometkim/rescript-vitest/node_modules/execa/lib/methods/main-async.js:168:4) at handlePromise (file:///home/cometkim/Workspace/src/github.com/cometkim/rescript-vitest/node_modules/execa/lib/methods/main-async.js:151:17) at process.processTicksAndRejections (node:internal/process/task_queues:105:5) { shortMessage: 'Command...
As described in https://github.com/rescript-lang/rescript/pull/7043#issue-2537532373 record duplication currently emits: ```js let newrecord = { ...obj }; newrecord.field = value; ``` It should be: ``` { ...obj, field: value }; ```
Hello from the new maintainer 👋 pbkit is a useful invention, but it was dying due to a lack of interest. I've been hoping someone would replace it, but no...
Currently the `@pothos/plugin-relay` is a bit opinionated on the global id format and is difficult to customize. The type definition has following constraints: - Type names are stored as strings....