mirror of
https://github.com/supabase/setup-cli.git
synced 2025-12-08 08:06:29 +00:00
* chore: update unit tests * fix: follow latest action template * chore: add licenses and workflows * chore: remove bloat * chore: fix linter
19 lines
443 B
TypeScript
19 lines
443 B
TypeScript
// See: https://rollupjs.org/introduction/
|
|
|
|
import commonjs from '@rollup/plugin-commonjs'
|
|
import nodeResolve from '@rollup/plugin-node-resolve'
|
|
import typescript from '@rollup/plugin-typescript'
|
|
|
|
const config = {
|
|
input: 'src/index.ts',
|
|
output: {
|
|
esModule: true,
|
|
file: 'dist/index.js',
|
|
format: 'es',
|
|
sourcemap: true
|
|
},
|
|
plugins: [typescript(), nodeResolve({ preferBuiltins: true }), commonjs()]
|
|
}
|
|
|
|
export default config
|