Files
thilalib/tsup.config.ts
Julien Valverdé 292a010ed6
All checks were successful
Lint / lint (push) Successful in 13s
Test build / test-build (pull_request) Successful in 18s
Build setup
2024-09-04 00:19:41 +02:00

20 lines
434 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", "cjs"],
skipNodeModulesBundle: true,
dts: true,
splitting: true,
sourcemap: true,
clean: true,
})