Files
thilalib/tsup.config.ts
Julien Valverdé a8229bc0cf
All checks were successful
Lint / lint (push) Successful in 11s
Test build / test-build (pull_request) Successful in 15s
Build fix
2024-08-20 02:22:46 +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,
})