20 lines
427 B
TypeScript
20 lines
427 B
TypeScript
import { defineConfig } from "tsup"
|
|
|
|
|
|
export default defineConfig({
|
|
entry: [
|
|
"./src/index.ts",
|
|
"./src/Layers/index.ts",
|
|
"./src/Schema/index.ts",
|
|
"./src/Schema/MobX/index.ts",
|
|
"./src/Schema/TanStackForm/index.ts",
|
|
"./src/Types/index.ts",
|
|
],
|
|
format: ["esm"],
|
|
skipNodeModulesBundle: true,
|
|
dts: true,
|
|
splitting: true,
|
|
sourcemap: true,
|
|
clean: true,
|
|
})
|