mirror of
https://github.com/zhigang1992/react-slot-fill.git
synced 2026-04-29 12:55:23 +08:00
10 lines
211 B
JavaScript
10 lines
211 B
JavaScript
import typescript from 'rollup-plugin-typescript';
|
|
|
|
export default {
|
|
entry: 'src/lib/index.ts',
|
|
format: 'cjs',
|
|
plugins: [ typescript({
|
|
typescript: require('typescript')
|
|
}) ],
|
|
dest: 'lib/index.js'
|
|
} |