13 lines
228 B
TypeScript
13 lines
228 B
TypeScript
import { defineConfig } from "rolldown/config";
|
|
|
|
export default defineConfig({
|
|
input: "src/index.ts",
|
|
output: {
|
|
file: "dist/index.js",
|
|
format: "esm",
|
|
minify: true,
|
|
},
|
|
platform: "node",
|
|
treeshake: true,
|
|
});
|