diff --git a/rollup.config.js b/rollup.config.js deleted file mode 100644 index 664c0fe..0000000 --- a/rollup.config.js +++ /dev/null @@ -1,39 +0,0 @@ -// rollup.config.js -import typescript from '@rollup/plugin-typescript'; -import commonjs from '@rollup/plugin-commonjs'; -import json from '@rollup/plugin-json'; -import { nodeResolve } from '@rollup/plugin-node-resolve'; - -export default { - input: 'src/extension.ts', - output: { - dir: 'dist', - format: 'cjs', - sourcemap: true, - }, - external: [ - '@podman-desktop/api', - 'electron', - 'node:stream', - 'node:http', - 'node:url', - 'node:process', - 'node:tls', - 'node:util', - 'node:buffer', - 'node:https', - 'node:events', - 'node:net', - 'node:process', - 'node:path', - 'node:os', - 'node:fs', - 'node:child_process', - ], - plugins: [ - typescript(), - commonjs({ extensions: ['.js', '.ts'] }), // the ".ts" extension is required], - json(), - nodeResolve({ preferBuiltins: true }), - ], -};