Andrew Branch
Andrew Branch
Cool! But unfortunately, there’s a case this doesn’t cover: adding a new root file or deleting a root file while in watch mode. `getScriptFileNames` _needs_ to be dynamic because the...
I just want to cross-reference https://github.com/microsoft/TypeScript/issues/37582 which is where I redirected https://github.com/microsoft/TypeScript/issues/46344 to. I would love to hear feedback there from Webpack users about - Why do you want/need to...
@alexander-akait the issue is that in the new TypeScript module resolution modes, users must write `import "./foo.js"` even though on disk, the colocated file is `./foo.ts`. This is because TypeScript...
It’s internal API, but it looks like it’s already used here: https://github.com/TypeStrong/ts-loader/blob/8bc7b8b58b9592ef998491b69b00e390d4f110a5/src/servicesHost.ts#L1290
I’ll give it a try this afternoon.
@alexander-akait I put up a super simple repro showing that `.js` resolution to `.ts` doesn’t work, but haven’t had time to start seeing how ts-loader could be involved here. Honestly...
I couldn’t observe any bad effects with this—when using a monorepo with symlinked packages through node_modules, I only ever witnessed the realpath being passed through here. With the `allowTsInNodeModules` flag,...
I recently discovered the same issue, after having written a series of loaders that transform a Markdown file into a valid TypeScript file exporting a React component. Needless to say,...
Came here to request this too. I would be interested in the ability to delete both local and remote branches. For local, I know there’s all kinds of bash-fu posted...
Not really; at the time I was working on a Commonmark-compliant parser, and so wanted to get clarification for the purpose of my own implementation.