-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.mts
34 lines (33 loc) · 953 Bytes
/
vite.config.mts
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
/**
* (c) 2024, Micro:bit Educational Foundation and contributors
*
* SPDX-License-Identifier: MIT
*/
import { resolve } from "path";
import { loadEnv } from "vite";
import { configDefaults, defineConfig, UserConfig } from "vitest/config";
export default defineConfig(({ mode }) => {
process.env = { ...process.env, ...loadEnv(mode, process.cwd()) };
const config: UserConfig = {
base: process.env.BASE_URL ?? "/",
build: {
sourcemap: true,
// Retain the option for a regular build
lib:
mode === "demo"
? undefined
: {
entry: resolve(__dirname, "lib/index.ts"),
name: "MicrobitConnection",
fileName: "microbit-connection",
},
},
test: {
exclude: [...configDefaults.exclude, "**/e2e/**", "build"],
environment: "jsdom",
setupFiles: "./lib/setupTests.ts",
mockReset: true,
},
};
return config;
});