We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here's our tsconfig.json file:
tsconfig.json
{ "compilerOptions": { "sourceMap": true, "baseUrl": ".", "declaration": true, "paths": { "@/*": [ "src/*" ] }, "strictNullChecks": true } }
When I generate the bundle, the imports like this one are not working as expected:
import { initSDK } from '@/core';
Looks like dts-bundle doesn't parse our tsconfig.json file. Is there a way to do that?
The text was updated successfully, but these errors were encountered:
Having the same issue.
Sorry, something went wrong.
You can use a transformer first. Basically, you use ts-transformer-imports to convert your imports into relative path, and then you apply DTS Bundle.
No branches or pull requests
Here's our
tsconfig.json
file:When I generate the bundle, the imports like this one are not working as expected:
Looks like dts-bundle doesn't parse our
tsconfig.json
file. Is there a way to do that?The text was updated successfully, but these errors were encountered: