在使用rollup打包过程中,希望通过babel将node_modules中指定模块的代码转译,但发现转译未生效。
根据提供的rollup.config.mjs和babel.config.json配置,问题锁定在babel插件的include配置不正确。
正确的include配置应为:
include: ['src/**/*', /node_modules/((?:.*[/])?@xyflow(?:[/].*)?)/]
其中,正则表达式/node_modules/((?:.[/])?@xyflow(?:[/].)?)/匹配node_modules中名为”@xyflow”的模块及其子模块。
调整include配置后,babel将能够将@xyflow模块中的”??”语法转译为兼容的语法。