You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just ran into this behavior. I'll elaborate since the original issue isn't super clear.
I have a ts project that uses the baseUrl compiler option to set ./src as the base import path for my ts scripts. This means my scrips have absolute imports that that look like models/Foo which is found by tsc as ./src/models/Foo.
When I use dts-bundle all of my baseUrl imports are not bundled, instead they show up in the list of dependencies in the built index.d.ts file.
If change baseUrl style imports to relative imports, then the typings are bundled in the rendered index.d.ts output file as expected.
It wasn't working if the files are in the non-relative path.
The text was updated successfully, but these errors were encountered: