Common Issues
Module Not Found
If you see an error like:
Module not found: Can't resolve '@BUNDLE/dist/...'Verify that the package is installed:
npm ls @BUNDLEEnsure you’re using the correct import paths.
Double-check the file structure within @BUNDLE.
You should not be taking elements from dist
TypeScript Issues
If using TypeScript, ensure your tsconfig.json includes:
{
"compilerOptions": {
"esModuleInterop": true,
"resolveJsonModule": true
}
}If type declarations are missing, ensure the latest version of @BUNDLE is installed.
npm install @BUNDLE@latestLast updated on