Files
bun-src/test/bundler/transpiler/sloppy-mode-fixture.ts
2026-08-27 21:09:14 +00:00

12 lines
167 B
TypeScript
Generated

function checkThis() {
if (this !== globalThis) {
throw new Error("this is not globalThis");
}
}
checkThis();
module.exports = {
FORCE_COMMON_JS: true,
};