diff options
| author | JSON Derulo <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2025-04-02 15:36:02 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-02 15:36:02 -0400 |
| commit | c226e87f77375ec5682834aaf9049a0076f3e9c2 (patch) | |
| tree | 78110de676f1b6ae601ac6aaeab0e8d55ee82704 /rollup.config.js | |
| parent | fc242fa45d24477c028032dc2f0777da07a44153 (diff) | |
| parent | 0e8fa29ac63933d3c4b5f9071c174cc2f26d99db (diff) | |
| download | decky-bazzite-buddy-c226e87f77375ec5682834aaf9049a0076f3e9c2.tar.gz decky-bazzite-buddy-c226e87f77375ec5682834aaf9049a0076f3e9c2.zip | |
Merge pull request #2 from victor-borges/main
Add Steam release notes support
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 +}) |
