Andrew Bradley
Andrew Bradley
@timini the "changed I've had to make" section of the OP lists fixes I made for compatibility. The yarn2 bugfix has since been merged and released, so shouldn't be necessary...
ts-node's ESM support should cover plop's use-cases, including skipping typechecking and using a native transpiler for speed. If users have configured it for other parts of their project, we'll pick...
As mentioned here https://github.com/volta-cli/volta/issues/651#issuecomment-841668494, the shims are included in @yarnpkg/cli-dist 2.4.2 and up. https://unpkg.com/browse/@yarnpkg/[email protected]/bin/
What is the second command supposed to do? ``` typings convert node.d.ts --ambient ``` `node.d.ts` is already ambient, right? I think I'm misunderstanding something simple.
I was able to make this work as follows: ``` npm install -g corepack # Specifying an explicit install-directory makes corepack overwrite volta's yarn shims, which is what we want...
What should I be doing today when I write new .d.ts files? Put them in DefinitelyTyped, or typings' registry, or both? I like the distributed nature of typings' registry, and...
@blakeembrey Thanks, I missed that link in the blog post; I'm checking it out now. UMD sounds great, plus the planned ability to reference external repos from DefinitelyTyped. It sounds...
@felixfbecker TypeScript 2.0 does that with @types and `"moduleResolution": "node"`, right?
I've subscribed to this issue and can explain any ts-node issues you may hit along the way. I'm not familiar with the way ts-node might be used here, if at...
Typically I would recommend using ts-node to execute an `.mts` Dangerfile. But with node's current limitations around `--loader`, this would mean spawning a sub-process. If we assume there are good...