Smartable/vite.config.ts
Madeorsk 649d608c89
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
Fix package externals for correct library build.
2024-09-23 17:02:09 +02:00

31 lines
653 B
TypeScript

import {ConfigEnv, defineConfig, UserConfig} from "vite";
import dts from "vite-plugin-dts";
import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/
export default defineConfig(({ mode }: ConfigEnv): UserConfig => {
return ({
build: {
outDir: "lib",
sourcemap: true,
minify: "esbuild",
lib: {
entry: "index.ts",
formats: ["es"],
fileName: "index",
},
rollupOptions: {
external: ["react", "react-dom", "react-router-dom", "@phosphor-icons/react", "@kernelui/core"],
},
},
plugins: [
react(),
dts({
insertTypesEntry: true,
exclude: ["demo", "node_modules"],
}),
]
});
});