Files
thilalib/tsup.config.ts
Julien Valverdé cfb3d20d44
All checks were successful
Publish / publish (push) Successful in 15s
Lint / lint (push) Successful in 10s
0.1.10 (#11)
Co-authored-by: Julien Valverdé <julien.valverde@mailo.com>
Reviewed-on: #11
2024-08-20 02:23:44 +02:00

19 lines
388 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/Types/index.ts",
],
format: ["esm", "cjs"],
skipNodeModulesBundle: true,
dts: true,
splitting: true,
sourcemap: true,
clean: true,
})