UNPKG

json-schema-library

Version:

Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation

11 lines (9 loc) 314 B
import { defineConfig } from "tsdown"; export default defineConfig({ entry: ["./index.ts"], format: "iife", globalName: "jlib", platform: "browser", // Bundle anything that's not a relative/absolute path (=> node_modules) noExternal: (id) => !id.startsWith(".") && !id.startsWith("/") });