a reactive (signals based) hypermedia web framework (wip)
stormlightlabs.github.io/volt/
hypermedia
frontend
signals
1import { defineConfig } from "tsdown";
2
3export default defineConfig({
4 entry: ["src/index.ts"],
5 format: ["esm"],
6 clean: true,
7 shims: true,
8 banner: { js: "#!/usr/bin/env node" },
9 alias: {
10 $commands: "./src/commands",
11 $utils: "./src/utils",
12 $versioning: "./src/versioning",
13 $console: "./src/console",
14 },
15});