Evgeniy Timokhov
Evgeniy Timokhov
Hi @kootoopas, Thanks for contributing to the project. This codeblock contains a generated by running a command `dts-bundle-generator --help` command. Do you know if it possible to fix it there...
@kootoopas it looks like it depends on the system where you're running the command. On windows it has the extension: ``` $ npx dts-bundle-generator --help Usage: dts-bundle-generator.js [options] ``` Probably...
Probably we can just remove that line from readme and leave yargs options as is (since they are accurate).
Hey @zaripych, is it expected that in your test case you're restricting the list of files that might be referenced in the sub-project is the only `"exports": "./index.ts"`? And also,...
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 anyway. > Imagine a complex project with multitude of packages...
> This already works. Worked on multiple projects for me. It's just I never got to fixing declarations for inlined packages. Have you tried _to publish_ a package that consists...
@zaripych sorry for late reply. After reading this thread again I think that I'm not going to implement compiling files from the `node_modules` folder, this is not how the compiler...
@zaripych Apologies for late reply (again 🙁). > Add TypeScript compiler options to CompilationOptions Have you looked into https://github.com/timocov/dts-bundle-generator/issues/137 ? Were able to find a proper types for the compiler...
Ok I was able to run this on wsl, here is my observations: - by default (if you don't change the config file) you get bunch errors like `error TS2307:...
> it's how dts-bundle-generator setups it internally. If you try to run tsc --build tsconfig.json in the packages/tooling-tests/todo-list-cli - it works without errors. The only difference is that composite: false...