1 Matching Annotations
- Sep 2020
-
rollupjs.org rollupjs.orgRollup1
-
In other words for those tools, you cannot create a package interface where const lib = require("your-lib") yields the same as import lib from "your-lib". With named export mode however, const {lib} = require("your-lib") will be equivalent to import {lib} from "your-lib".
-