0a4a2330dc
Closes #97
20 lines
272 B
TypeScript
20 lines
272 B
TypeScript
import { defineConfig } from "@rslib/core";
|
|
|
|
export default defineConfig({
|
|
lib: [
|
|
{
|
|
format: "esm",
|
|
dts: true,
|
|
},
|
|
],
|
|
source: {
|
|
entry: {
|
|
index: "src/index.ts",
|
|
},
|
|
},
|
|
output: {
|
|
target: "node",
|
|
cleanDistPath: true,
|
|
},
|
|
});
|