2024-08-20 13:57:59 +00:00
|
|
|
import { defineConfig } from "vite";
|
2024-08-21 15:14:40 +00:00
|
|
|
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-30 14:10:17 +00:00
|
|
|
external: ["@codex-storage/sdk-js", "@tanstack/react-query"],
|
2024-08-21 15:14:40 +00:00
|
|
|
output: {
|
|
|
|
globals: {
|
2024-08-30 14:10:17 +00:00
|
|
|
"@codex-storage/sdk-js": "codex-sdk-js",
|
2024-08-21 15:14:40 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
react(),
|
|
|
|
libInjectCss(),
|
|
|
|
dts({
|
|
|
|
tsconfigPath: "./tsconfig.build.json",
|
|
|
|
rollupTypes: true,
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
build: {
|
|
|
|
lib: {
|
|
|
|
entry: resolve(__dirname, "src/index.ts"),
|
|
|
|
formats: ["es"],
|
|
|
|
},
|
2024-08-30 14:36:06 +00:00
|
|
|
sourcemap: true,
|
2024-08-21 15:14:40 +00:00
|
|
|
rollupOptions: {
|
|
|
|
external: [
|
|
|
|
"react",
|
|
|
|
"react/jsx-runtime",
|
2024-08-30 14:10:17 +00:00
|
|
|
"@codex-storage/sdk-js",
|
2024-08-21 15:14:40 +00:00
|
|
|
"@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: {
|
2024-08-30 14:10:17 +00:00
|
|
|
"@codex-storage/sdk-js": "codex-sdk-js",
|
2024-08-21 15:14:40 +00:00
|
|
|
},
|
|
|
|
},
|
2024-08-20 14:10:02 +00:00
|
|
|
},
|
2024-08-20 13:57:59 +00:00
|
|
|
},
|
|
|
|
});
|