/
githubmirror
/
babel
Обзор
Документация
Войти
/
githubmirror
/
babel
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/babel-plugin-transform-modules-commonjs/src/index.ts
300 строк
10 KB
liuxingbaoyu
Enable `strictFunctionTypes` (#17946)
22 май 2026, 17:12
Не верифицирован
22 май 2026, 17:12
c6d71f3
Код
Авторство
О чём код?
import { declare } from "@babel/helper-plugin-utils"; import { isModule, rewriteModuleStatementsAndPrepareHeader, type RewriteModuleStatementsAndPrepareHeaderOptions, isSideEffectImport, buildNamespaceInitStatements, ensureStatementsHoisted, wrapInterop, } from "@babel/helper-module-transforms"; import { template, types as t } from "@babel/core"; import type { PluginPass, Visitor, Scope, NodePath } from "@babel/core"; import type { PluginOptions } from "@babel/helper-module-transforms"; import { transformDynamicImport } from "./dynamic-import.ts"; import { lazyImportsHook } from "./lazy.ts"; import { defineCommonJSHook, makeInvokers } from "./hooks.ts"; export { defineCommonJSHook }; export interface Options extends PluginOptions { allowCommonJSExports?: boolean; allowTopLevelThis?: boolean; importInterop?: RewriteModuleStatementsAndPrepareHeaderOptions["importInterop"]; lazy?: RewriteModuleStatementsAndPrepareHeaderOptions["lazy"]; /** @deprecated Use the `constantReexports` and `enumerableModuleMeta` assumptions instead. */ loose?: boolean; mjsStrictNamespace?: boolean; noInterop?: boolean; strict?: boolean; strictMode?: boolean; strictNamespace?: boolean; } export default declare((api, options: Options) => { api.assertVersion(REQUIRED_VERSION("^7.0.0-0 || ^8.0.0")); if ("loose" in options) { console.warn( "@babel/plugin-transform-modules-commonjs: The 'loose' option has been deprecated, " + "use the `constantReexports` and `enumerableModuleMeta` assumptions instead (https://babeljs.io/assumptions).", ); } const { // 'true' for imports to strictly have .default, instead of having // destructuring-like behavior for their properties. This matches the behavior // of the initial Node.js (v12) behavior when importing a CommonJS without // the __esMoule property. // .strictNamespace is for non-mjs files, mjsStrictNamespace if for mjs files. strictNamespace = false, mjsStrictNamespace = strictNamespace, allowTopLevelThis, strict, strictMode, noInterop, importInterop, lazy = false, // Defaulting to 'true' for now. May change before 7.x major. allowCommonJSExports = true, loose = false, } = options; const constantReexports = api.assumption("constantReexports") ?? loose; const enumerableModuleMeta = api.assumption("enumerableModuleMeta") ?? loose; const noIncompleteNsImportDetection = api.assumption("noIncompleteNsImportDetection") ?? false; if ( typeof lazy !== "boolean" && typeof lazy !== "function" && (!Array.isArray(lazy) || !lazy.every(item => typeof item === "string")) ) { throw new Error(`.lazy must be a boolean, array of strings, or a function`); } if (typeof strictNamespace !== "boolean") { throw new Error(`.strictNamespace must be a boolean, or undefined`); } if (typeof mjsStrictNamespace !== "boolean") { throw new Error(`.mjsStrictNamespace must be a boolean, or undefined`); } const getAssertion = (localName: string) => template.expression.ast` (function(){ throw new Error( "The CommonJS '" + "${localName}" + "' variable is not available in ES6 modules." + "Consider setting setting sourceType:script or sourceType:unambiguous in your " + "Babel config for this file."); })() `; const moduleExportsVisitor: Visitor<{ scope: Scope }> = { ReferencedIdentifier(path) { const localName = path.node.name; if (localName !== "module" && localName !== "exports") return; const localBinding = path.scope.getBinding(localName); const rootBinding = this.scope.getBinding(localName); if ( // redeclared in this scope rootBinding !== localBinding || (path.parentPath.isObjectProperty({ value: path.node }) && path.parentPath.parentPath.isObjectPattern()) || path.parentPath.isAssignmentExpression({ left: path.node }) || path.isAssignmentExpression({ left: path.node }) ) { return; } path.replaceWith(getAssertion(localName)); }, UpdateExpression(path) { const arg = path.get("argument"); if (!arg.isIdentifier()) return; const localName = arg.node.name; if (localName !== "module" && localName !== "exports") return; const localBinding = path.scope.getBinding(localName); const rootBinding = this.scope.getBinding(localName); // redeclared in this scope if (rootBinding !== localBinding) return; path.replaceWith( t.assignmentExpression( (path.node.operator[0] + "=") as t.AssignmentExpression["operator"], arg.node, getAssertion(localName), ), ); }, AssignmentExpression(path) { const left = path.get("left"); if (left.isIdentifier()) { const localName = left.node.name; if (localName !== "module" && localName !== "exports") return; const localBinding = path.scope.getBinding(localName); const rootBinding = this.scope.getBinding(localName); // redeclared in this scope if (rootBinding !== localBinding) return; const right = path.get("right"); right.replaceWith( t.sequenceExpression([right.node, getAssertion(localName)]), ); } else if (left.isPattern()) { const ids = left.getOuterBindingIdentifiers(); const localName = Object.keys(ids).find(localName => { if (localName !== "module" && localName !== "exports") return false; return ( this.scope.getBinding(localName) === path.scope.getBinding(localName) ); }); if (localName) { const right = path.get("right"); right.replaceWith( t.sequenceExpression([right.node, getAssertion(localName)]), ); } } }, }; return { name: "transform-modules-commonjs", pre() { this.file.set("@babel/plugin-transform-modules-*", "commonjs"); if (lazy) defineCommonJSHook(this.file, lazyImportsHook(lazy)); }, visitor: api.traverse.explode({ "CallExpression|ImportExpression"( this: PluginPass, path: NodePath<t.CallExpression | t.ImportExpression>, ) { if (!this.file.has("@babel/plugin-proposal-dynamic-import")) return; if (path.isCallExpression() && !t.isImport(path.node.callee)) return; let { scope } = path; do { scope.rename("require"); } while ((scope = scope.parent!)); transformDynamicImport(path, noInterop, this.file); }, Program: { exit(path, state) { if (!isModule(path)) return; // Rename the bindings auto-injected into the scope so there is no // risk of conflict between the bindings. path.scope.rename("exports"); path.scope.rename("module"); path.scope.rename("require"); path.scope.rename("__filename"); path.scope.rename("__dirname"); // Rewrite references to 'module' and 'exports' to throw exceptions. // These objects are specific to CommonJS and are not available in // real ES6 implementations. if (!allowCommonJSExports) { path.traverse(moduleExportsVisitor, { scope: path.scope, }); } const hooks = makeInvokers(this.file); const { meta, headers } = rewriteModuleStatementsAndPrepareHeader( path, { exportName: "exports", constantReexports, enumerableModuleMeta, strict, strictMode, allowTopLevelThis, noInterop, importInterop, wrapReference: hooks.wrapReference, getWrapperPayload: hooks.getWrapperPayload, esNamespaceOnly: typeof state.filename === "string" && state.filename.endsWith(".mjs") ? mjsStrictNamespace : strictNamespace, noIncompleteNsImportDetection, filename: this.file.opts.filename, }, ); for (const [source, metadata] of meta.source) { const loadExpr = t.callExpression(t.identifier("require"), [ t.stringLiteral(source), ]); let header: t.Statement | null; if (isSideEffectImport(metadata)) { if (lazy && metadata.wrap === "function") { throw new Error("Assertion failure"); } header = t.expressionStatement(loadExpr); } else { const init = wrapInterop(path, loadExpr, metadata.interop) || loadExpr; if (metadata.wrap) { const res = hooks.buildRequireWrapper!( metadata.name, init, metadata.wrap, metadata.referenced, ); if (res === false) continue; else header = res; } header ??= template.statement.ast` var ${metadata.name} = ${init}; `; } header.loc = metadata.loc; headers.push(header); headers.push( ...buildNamespaceInitStatements( meta, metadata, constantReexports, hooks.wrapReference, ), ); } ensureStatementsHoisted(headers); path.unshiftContainer("body", headers); path.get("body").forEach(path => { if (!headers.includes(path.node)) return; if (path.isVariableDeclaration()) { path.scope.registerDeclaration(path); } }); }, }, }), }; });