This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/doc/IMPORT-ISSUES.md

342 B

How to import common-js dependency using ES6 syntax


Until #6632 is fixed, such imports should be done as follows:

import * as pkg from "off-color";
// @ts-ignore 
const offColor = pkg.offColor ?? pkg.default.offColor;

This way build, dev server and unit tests should all work.