-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathvite.config.lib.ts
41 lines (39 loc) · 1010 Bytes
/
vite.config.lib.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
/// <reference types="vitest" />
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { resolve } from "path";
import dts from "vite-plugin-dts";
import cssInjectedByJsPlugin from "vite-plugin-css-injected-by-js";
export default defineConfig({
plugins: [
cssInjectedByJsPlugin(),
react(),
dts({
insertTypesEntry: true,
}),
],
test: {
globals: true,
environment: "jsdom",
setupFiles: "./tests/setup.js",
},
build: {
lib: {
// Could also be a dictionary or array of multiple entry points
entry: resolve(__dirname, "src/lib/index.ts"),
name: "ReactTVPlayer",
// the proper extensions will be added
fileName: "react-tv-player",
},
rollupOptions: {
external: ["react", "react-dom", "react/jsx-runtime"],
output: {
globals: {
react: "React",
"react-dom": "ReactDOM",
"react/jsx-runtime": "react/jsx-runtime",
},
},
},
},
});