Files
thilalib/tsup.config.ts
Julien Valverdé 6b7e16ceab
All checks were successful
Lint / lint (push) Successful in 11s
Refactoring
2024-07-29 18:14:38 +02:00

18 lines
355 B
TypeScript

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