Back to Rolldown

Output External Live Bindings

packages/rolldown/src/options/docs/output-external-live-bindings.md

1.1.4386 B
Original Source

Example

js
// input
export { x } from 'external';
js
// CJS output with externalLiveBindings: true
var external = require('external');

Object.defineProperty(exports, 'x', {
  enumerable: true,
  get: function () {
    return external.x;
  },
});
js
// CJS output with externalLiveBindings: false
var external = require('external');

exports.x = external.x;