**What** - #9338 had a regression which caused the import path in some virtual modules to be invalid on Windows. - This PR fixes the issue so we now again create the correct import paths, and adds tests to prevent this from slipping in again.
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
import { defineConfig } from "tsup"
|
|
|
|
export default defineConfig({
|
|
entry: ["./src/index.ts"],
|
|
tsconfig: "tsconfig.build.json",
|
|
format: ["cjs", "esm"],
|
|
dts: true,
|
|
clean: true,
|
|
})
|