codex-marketplace-ui-compon.../vite.config.ts

67 lines
1.7 KiB
TypeScript
Raw Normal View History

2024-08-20 13:57:59 +00:00
import { defineConfig } from "vite";
import { resolve } from "path";
import dts from "vite-plugin-dts";
import react from "@vitejs/plugin-react";
import { libInjectCss } from "vite-plugin-lib-inject-css";
import { extname, relative } from "path";
import { fileURLToPath } from "node:url";
import pkg from "glob";
const { glob } = pkg;
2024-08-20 13:57:59 +00:00
// https://vitejs.dev/config/
export default defineConfig({
worker: {
2024-08-20 14:10:02 +00:00
rollupOptions: {
2024-08-23 13:31:37 +00:00
external: ["@codex/sdk-js", "@tanstack/react-query"],
output: {
globals: {
"@codex/sdk-js": "codex-sdk-js",
},
},
},
},
plugins: [
react(),
libInjectCss(),
dts({
tsconfigPath: "./tsconfig.build.json",
rollupTypes: true,
}),
],
build: {
lib: {
entry: resolve(__dirname, "src/index.ts"),
formats: ["es"],
},
rollupOptions: {
external: [
"react",
"react/jsx-runtime",
"@codex/sdk-js",
"@tanstack/react-query",
],
input: Object.fromEntries(
glob
.sync("src/**/*.{ts,tsx}", {
ignore: ["src/**/*.d.ts"],
})
.map((file) => [
// The name of the entry point
// lib/nested/foo.ts becomes nested/foo
relative("src", file.slice(0, file.length - extname(file).length)),
// The absolute path to the entry file
// lib/nested/foo.ts becomes /project/lib/nested/foo.ts
fileURLToPath(new URL(file, import.meta.url)),
])
),
output: {
assetFileNames: "assets/[name][extname]",
entryFileNames: "[name].js",
globals: {
"@codex/sdk-js": "codex-sdk-js",
},
},
2024-08-20 14:10:02 +00:00
},
2024-08-20 13:57:59 +00:00
},
});