mirror of
https://github.com/goenning/google-indexing-script.git
synced 2024-11-22 03:33:36 +03:00
add tsup config
This commit is contained in:
parent
61a118e9a5
commit
0742241aa0
13
tsup.config.ts
Normal file
13
tsup.config.ts
Normal file
@ -0,0 +1,13 @@
|
||||
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);
|
Loading…
Reference in New Issue
Block a user