typescript 为什么在我没有进行代码拆分的情况下,Rollup会抱怨代码拆分?

k3fezbri  于 2022-12-14  发布在  TypeScript
关注(0)|答案(2)|浏览(293)

在我的rollup.config.js中只有一个output条目,如下所示:

export default {
  input: './src/Index.tsx',
  output: {
    dir: './myBundle/bundle',
    format: 'iife',
    sourcemap: true,
  },
  plugins: [
    typescript(),
    nodeResolve(),
    commonjs(),
    babel(),
    json(),
    terser(),
  ],
};

为什么Rollup指责我进行代码拆分?[!] Error: UMD and IIFE output formats are not supported for code-splitting builds.

py49o6xq

py49o6xq1#

使用Routify时遇到此问题。在rollup.config.js中添加inlineDynamicImports: true为我解决了此问题

export default {
input: "src/main.ts",
output: {
    sourcemap: true,
    format: "iife",
    name: "app",
    file: "public/build/bundle.js",
    inlineDynamicImports: true, //Add this
},

svelte - import dependency package with error

gorkyyrv

gorkyyrv2#

应将format设置为等于esmes

相关问题