mirror of
https://github.com/goenning/google-indexing-script.git
synced 2024-11-25 08:43:02 +03:00
14 lines
242 B
TypeScript
14 lines
242 B
TypeScript
import { defineConfig, Options } from "tsup";
|
|
|
|
const config: Options = {
|
|
entry: ["src/**/*.ts"],
|
|
splitting: true,
|
|
sourcemap: true,
|
|
clean: true,
|
|
platform: "node",
|
|
dts: true,
|
|
minify: true,
|
|
};
|
|
|
|
export default defineConfig(config);
|