generated from brianrodri/obsidian-preact-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
48 lines (47 loc) · 1.42 KB
/
vite.config.js
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
import { preact } from "@preact/preset-vite";
import { resolve } from "path";
import { defineConfig } from "vite";
import { viteStaticCopy } from "vite-plugin-static-copy";
export default defineConfig(({ mode }) => ({
plugins: [
preact(),
viteStaticCopy({
targets: [
{ src: "styles.css", dest: "./" },
{ src: "manifest.json", dest: "./" },
],
}),
],
build: {
emptyOutDir: false, // Otherwise helpful files like ".hotreload" will be wiped.
lib: {
entry: "src/main.tsx",
fileName: () => "main.js",
formats: ["cjs"],
},
rollupOptions: {
treeshake: true,
external: ["obsidian"],
},
sourcemap: mode === "development" ? "inline" : false,
},
resolve: {
alias: {
"@": resolve(__dirname, "/src"),
"react": "preact/compat",
"react-dom": "preact/compat",
},
},
test: {
environment: "jsdom",
include: ["src/**/__tests__/**/*.test.{ts,tsx}"],
coverage: {
all: true,
include: ["src/"],
exclude: ["src/main.tsx", "src/lib"],
thresholds: { 100: true },
reporter: ["text", "html", "clover", "json", "lcov"],
},
reporters: [["junit", { outputFile: "test-report.junit.xml" }], "verbose"],
},
}));