* intial work * update lock * add routes and fix HMR of configs * cleanup * rm imports * rm debug from plugin * address feedback * address feedback
11 lines
283 B
JavaScript
11 lines
283 B
JavaScript
import { VIRTUAL_MODULES } from "@medusajs/admin-shared"
|
|
import { defineConfig } from "tsup"
|
|
|
|
export default defineConfig({
|
|
entry: ["./src/app.tsx"],
|
|
format: ["cjs", "esm"],
|
|
external: [...VIRTUAL_MODULES, "virtual:config"],
|
|
tsconfig: "tsconfig.build.json",
|
|
clean: true,
|
|
})
|