55 lines
1.6 KiB
TypeScript
55 lines
1.6 KiB
TypeScript
/*
|
|
Copyright 2026 Element Creations Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import { dirname, resolve } from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
import react from "@vitejs/plugin-react";
|
|
import { nodePolyfills } from "vite-plugin-node-polyfills";
|
|
import svgr from "vite-plugin-svgr";
|
|
import { importCSSSheet } from "@arcmantle/vite-plugin-import-css-sheet";
|
|
import { mergeConfig } from "vitest/config";
|
|
import { playwright } from "@vitest/browser-playwright";
|
|
import baseConfig from "@element-hq/element-web-module-api/vite.base.ts";
|
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
|
|
export default mergeConfig(baseConfig, {
|
|
build: {
|
|
lib: {
|
|
entry: resolve(__dirname, "src/index.tsx"),
|
|
name: "element-web-module-widget-toggles",
|
|
fileName: "index",
|
|
formats: ["es"],
|
|
},
|
|
},
|
|
plugins: [
|
|
importCSSSheet(),
|
|
react(),
|
|
svgr(),
|
|
nodePolyfills({
|
|
include: ["events"],
|
|
}),
|
|
],
|
|
test: {
|
|
include: ["tests/**/*.test.{ts,tsx}"],
|
|
exclude: ["./e2e/**/*", "./node_modules/**/*"],
|
|
reporters: ["default"],
|
|
coverage: {
|
|
provider: "v8",
|
|
include: ["src/**/*.ts"],
|
|
reporter: [["lcov", { projectRoot: "../../" }], "text"],
|
|
},
|
|
browser: {
|
|
enabled: true,
|
|
headless: true,
|
|
provider: playwright({}),
|
|
instances: [{ browser: "chromium" }],
|
|
},
|
|
setupFiles: ["tests/setupTests.ts"],
|
|
},
|
|
});
|