json-schema-to-typescript
Version:
compile json schema to typescript typings
19 lines (18 loc) • 396 B
JSON
{
// Tests run straight from TypeScript source under `bun test`, so they are
// never emitted -- this config exists to type-check them (and the source they
// import) with bun's globals in scope.
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": true,
"types": [
"bun",
"node"
]
},
"exclude": [
"dist",
"example",
"node_modules"
]
}