神仙都没用 68cd190481 发布 8.0
2025-02-19 11:41:01 +08:00

22 lines
345 B
JavaScript

import typescript from "@rollup/plugin-typescript";
import { defineConfig } from "rollup";
export default defineConfig({
input: ["src/index.ts"],
external: ["lodash"],
output: {
name: "index",
format: "umd",
file: "dist/index.js",
},
plugins: [
typescript({
module: "esnext",
exclude: ["./node_modules/**"],
}),
],
});