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
Reproducible in this project https://github.com/seamapi/types at this commit: seamapi/types@68ec482
Project defines paths as
{ "paths": { "@seamapi/types": ["./src/index.ts"], "@seamapi/types/connect": ["./src/connect.ts"], "@seamapi/types/devicedb": ["./src/devicedb.ts"], "lib/*": ["./src/lib/*"] } }
And has an import statement
import { schemas as devicedb_schemas } from '@seamapi/types/devicedb'
but in the final output, this import statement is unchanged, however it should be replaced as
import { schemas as devicedb_schemas } from '../../../../../../devicedb.js';
Workaround is adding a custom replacer: seamapi/types#610
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reproducible in this project https://github.com/seamapi/types at this commit: seamapi/types@68ec482
Project defines paths as
And has an import statement
but in the final output, this import statement is unchanged, however it should be replaced as
Workaround is adding a custom replacer: seamapi/types#610
The text was updated successfully, but these errors were encountered: