Files
thilalib/tsup.config.ts
Julien Valverdé f939e516b3
All checks were successful
Lint / lint (push) Successful in 12s
File structure refactoring
2024-09-07 03:08:09 +02:00

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,
})