配置项类型提示

为了方便在写Rollup配置项时,有充足的ts类型提示,可使用如下两种方式:

第一种:JSDoc形式,如下:

// rollup.config.mjs
/**
 * @type {import('rollup').RollupOptions}
 */
export default {
  ...省略
}

第二种,使用Rollup提供的defineConfig方法,如下:

// rollup.config.mjs
import { defineConfig } from 'rollup'
export default defineConfig({
  ...省略
})

以上仅列举官方提供的两种方式,你可以点击Rollup配置智能提示open in new window了解更多。

最后更新时间:
贡献者: wangtunan