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