-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtsup.config.ts
51 lines (45 loc) · 1.15 KB
/
tsup.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { cpSync } from "node:fs"
import { defineConfig } from "tsup"
import pkgJson from "./package.json" with { type: "json" }
export default defineConfig({
entry: ["src/index.ts"],
external: ["sqlite3"],
outDir: "dist",
bundle: true,
sourcemap: false,
clean: true,
minify: true,
env: {
NODE_ENV: process.env.NODE_ENV ?? "production",
DEV: (process.env.NODE_ENV === "development") as unknown as string,
PROD: (process.env.NODE_ENV === "production") as unknown as string,
TEST: false as unknown as string,
HOMEPAGE: JSON.stringify(pkgJson.homepage),
},
shims: true,
target: "node22",
format: ["esm"],
banner: {
js: "import {createRequire} from 'module';const require=createRequire(import.meta.url);",
},
esbuildOptions: (options) => {
options.supported = {
// For better performance: https://github.com/evanw/esbuild/issues/951
"object-rest-spread": false,
}
},
esbuildPlugins: [
{
name: "better-sqlite3-copy",
setup({ onEnd }) {
onEnd(() => {
cpSync(
"node_modules/better-sqlite3/build/Release/better_sqlite3.node",
"dist/better_sqlite3.node",
{ recursive: true },
)
})
},
},
],
})