-
Notifications
You must be signed in to change notification settings - Fork 10
/
vite.config.ts
56 lines (53 loc) · 1.29 KB
/
vite.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
52
53
54
55
56
import { resolve, join } from "path";
import replace from "@rollup/plugin-replace";
import { defineConfig } from "vitest/config";
import dts from "vite-plugin-dts";
import strip from "@rollup/plugin-strip";
const target = process.env.TARGET || "web";
const webBuild = {
outDir: "dist",
target: "esnext",
minify: false,
lib: {
entry: resolve(__dirname, `lib/main${target === "web" ? "" : "-rn"}.ts`),
name: "nanoquery",
fileName: "nanoquery",
},
rollupOptions: {
external: [
"nanostores",
"nanoevents",
"react-native",
"@react-native-community/netinfo",
],
},
};
const rnBuild = structuredClone(webBuild);
rnBuild.outDir = "rn-dist";
// @ts-expect-error
rnBuild.lib.formats = ["cjs"];
export default defineConfig({
test: {
globals: true,
environment: "happy-dom",
},
build: target === "web" ? webBuild : rnBuild,
plugins: [
replace({
preventAssignment: true,
"process.env.RN": JSON.stringify(target !== "web"),
}),
{
...strip({
include: ["**/*.(ts|js)"],
// Intentionally leave out console.warn here
functions: ["console.log"],
}),
apply: "build",
},
dts({
entryRoot: join(__dirname, "lib"),
exclude: [join(__dirname, "lib", "__tests__")],
}),
],
});