rollup.config.js 382 B

1234567891011121314
  1. import typescript from 'rollup-plugin-typescript2'; // 一定要是typescript2,如果使用typescript,没法自动生成.d.ts文件
  2. import pkg from './package.json';
  3. export default [
  4. {
  5. input: 'src/index.ts',
  6. external: ['ms'],
  7. plugins: [typescript()],
  8. output: [
  9. { file: pkg.main, format: 'cjs' },
  10. { file: pkg.module, format: 'es' },
  11. ],
  12. },
  13. ];