Files
thilalib/tsup.config.ts
Julien Valverdé 02d8e38f4d
All checks were successful
Publish / publish (push) Successful in 13s
Lint / lint (push) Successful in 11s
0.1.17 (#18)
Co-authored-by: Julien Valverdé <julien.valverde@mailo.com>
Reviewed-on: #18
2024-09-07 20:56:30 +02:00

23 lines
525 B
TypeScript

import { defineConfig } from "tsup"
export default defineConfig({
entry: [
"./src/index.ts",
"./src/Express/index.ts",
"./src/TRPC/index.ts",
"./src/Types/index.ts",
"./src/Schema/index.ts",
"./src/Schema/MobX/index.ts",
"./src/Schema/TanStackForm/index.ts",
"./src/JSONWebToken.ts",
"./src/OpenAIClient.ts",
],
format: ["esm"],
skipNodeModulesBundle: true,
dts: true,
splitting: true,
sourcemap: true,
clean: true,
})