mirror of
https://github.com/graalvm/setup-graalvm.git
synced 2025-02-23 04:00:11 +08:00
20 lines
470 B
TypeScript
20 lines
470 B
TypeScript
// See: https://rollupjs.org/introduction/
|
|
|
|
import commonjs from '@rollup/plugin-commonjs'
|
|
import json from '@rollup/plugin-json'
|
|
import nodeResolve from '@rollup/plugin-node-resolve'
|
|
import typescript from '@rollup/plugin-typescript'
|
|
|
|
const config = {
|
|
input: 'src/cleanup.ts',
|
|
output: {
|
|
esModule: true,
|
|
file: 'dist/cleanup.js',
|
|
format: 'es',
|
|
sourcemap: true
|
|
},
|
|
plugins: [typescript(), nodeResolve(), commonjs(), json()]
|
|
}
|
|
|
|
export default config
|