diff options
| author | Victor Borges <victor1882@outlook.com> | 2025-03-31 10:54:03 -0300 |
|---|---|---|
| committer | Victor Borges <victor1882@outlook.com> | 2025-03-31 10:54:03 -0300 |
| commit | 7e3b07d83aae6547ce121f904971e6491c0c2cdd (patch) | |
| tree | 11e169767a645f38fc906f32fe9e9eb11bfcf50a /rollup.config.js | |
| parent | fc242fa45d24477c028032dc2f0777da07a44153 (diff) | |
| download | decky-bazzite-buddy-7e3b07d83aae6547ce121f904971e6491c0c2cdd.tar.gz decky-bazzite-buddy-7e3b07d83aae6547ce121f904971e6491c0c2cdd.zip | |
patch steam release notes
Diffstat (limited to 'rollup.config.js')
| -rw-r--r-- | rollup.config.js | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/rollup.config.js b/rollup.config.js index 0c20d4f..3af651b 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -1,17 +1,5 @@ import deckyPlugin from "@decky/rollup"; -import resolve from "@rollup/plugin-node-resolve"; -import typescript from "@rollup/plugin-typescript"; -import commonjs from "@rollup/plugin-commonjs"; export default deckyPlugin({ - input: "src/index.tsx", // Entry file for the plugin - output: { - dir: "dist", // Output directory for the built files - format: "cjs", // CommonJS format, required for Decky Loader plugins - }, - plugins: [ - resolve(), // Resolves `node_modules` imports - commonjs(), // Converts CommonJS modules to ES modules - typescript(), // Compiles TypeScript to JavaScript - ], -});
\ No newline at end of file + // Add your extra Rollup options here +}) |
