Back to Rolldown

Checks Import Is Undefined

packages/rolldown/src/options/docs/checks-import-is-undefined.md

1.0.0220 B
Original Source

::: code-group

js
import * as utils from './utils.js'; // 'nonExistent' is not exported
console.log(utils.nonExistent); // Always undefined
js
export const helper = () => 'help';

:::