mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 04:35:39 +01:00
29 lines
649 B
JavaScript
29 lines
649 B
JavaScript
import typescript from "@rollup/plugin-typescript";
|
|
import resolve from "@rollup/plugin-node-resolve";
|
|
import commonjs from "@rollup/plugin-commonjs";
|
|
import json from "@rollup/plugin-json";
|
|
import terser from '@rollup/plugin-terser';
|
|
|
|
import * as loader from "./generateExports.js";
|
|
loader;
|
|
|
|
export default {
|
|
input: "src/server.ts",
|
|
preserveEntrySignatures: false,
|
|
output: {
|
|
dir: "dist",
|
|
format: "cjs",
|
|
},
|
|
plugins: [
|
|
resolve({ browser: false }),
|
|
commonjs({
|
|
extensions: [".mjs", ".js", ".ts"],
|
|
transformMixedEsModules: true,
|
|
ignoreGlobal: true,
|
|
}),
|
|
json(),
|
|
typescript(),
|
|
terser(),
|
|
],
|
|
};
|