mirror of
https://github.com/bendtherules/some-hooks.git
synced 2026-08-18 13:52:05 +00:00
init create-react-hook@2.6.18
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
import typescript from 'rollup-plugin-typescript2'
|
||||
import commonjs from 'rollup-plugin-commonjs'
|
||||
import external from 'rollup-plugin-peer-deps-external'
|
||||
import resolve from 'rollup-plugin-node-resolve'
|
||||
import url from 'rollup-plugin-url'
|
||||
|
||||
import pkg from './package.json'
|
||||
|
||||
export default {
|
||||
input: 'src/index.tsx',
|
||||
output: [
|
||||
{
|
||||
file: pkg.main,
|
||||
format: 'cjs',
|
||||
exports: 'named',
|
||||
sourcemap: true
|
||||
},
|
||||
{
|
||||
file: pkg.module,
|
||||
format: 'es',
|
||||
exports: 'named',
|
||||
sourcemap: true
|
||||
}
|
||||
],
|
||||
plugins: [
|
||||
external(),
|
||||
url({ exclude: ['**/*.svg'] }),
|
||||
resolve(),
|
||||
typescript({
|
||||
rollupCommonJSResolveHack: true,
|
||||
clean: true
|
||||
}),
|
||||
commonjs()
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user