Files
thilalib/tsup.config.ts
Julien Valverdé 24d4ab6e46
All checks were successful
Publish / publish (push) Successful in 17s
Lint / lint (push) Successful in 12s
0.1.15 (#16)
Co-authored-by: Julien Valverdé <julien.valverde@mailo.com>
Reviewed-on: #16
2024-09-04 00:33:45 +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,
})