Rinat Zaripov
Rinat Zaripov
Hey @timocov I understand that it's quite unusual that the imported code is uncompiled TypeScript. The monorepo setup I'm experimenting with is to allow development (not runtime when the package...
E.g. I do the same with `rollup` as bundler. It never fails bundling/transpiling `packageC` if I didn't bundle `packageA` first. It just works.
Just to clarify, `dts-bundle-generator` would actually work just fine if that `node_modules` module was a regular non-symlinked module. I've added another test case to clarify what I mean: https://github.com/zaripych/dts-bundle-generator/commit/bacf243fb76bbb0a1091742265fbdac3247ede5e I've...
Thank you for bearing with me. Appreciate your time. > Btw, did you try to disable [followSymlinks](https://github.com/timocov/dts-bundle-generator/tree/master/src/config-file#schema) option? It seems that it might help since you're inlining your local packages...
Sorry I still haven't got to trying. 👍 Will do this evening. > Have you tried to publish a package that consists of ts files only If by publishing you...
@timocov the config didn't help, and it prevented from other npm packages mounted by `pnpm` from working as well. To clarify, with following config: ```json { "compilationOptions": { "preferredConfigPath": "./tsconfig.json",...
@timocov UPD: I've tried `rollup-plugin-dts` today to see if it fits my needs. It breaks my type definitions and also incapable of generating `.d.ts` directly from TypeScript source code. So...
@timocov if we agree on a solution that would allow users to generate bundles via single command, whether it is explicit `tsconfig.json` with composite references or modified `dts-config.json` with references...
@timocov No worries and thank you for getting back to me. Appreciate it. > I think that I'm not going to implement compiling files from the node_modules folder That makes...
I was able to have a proof of concept working for the approach with specifying `path` compiler option. 👍 The changes I've made to the `dts-bundle-generator` [here are only about...