Files
ts-json-definition-transpiler/test/tsconfig.json
T
Lukas Obermann 1960dd98d8 feat!: complete rework
- Use Prettier for formatting
- Use composite TypeScript projects
- Use generics in custom AST and resolve them for outputs that don’t support generics
- Add tests
- Export AST types
- Export single renderers
- JSON Schema renderer option to control unresolvedProperties/additionalProperties
- Tests

The Markdown generation may still be improved.
2023-11-09 20:04:36 +01:00

18 lines
350 B
JSON

{
"compilerOptions": {
"composite": true,
"declaration": true,
"lib": ["ESNext"],
"module": "NodeNext",
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"outDir": "../libtest",
"sourceMap": true,
"strict": true,
"target": "ESNext",
},
"references": [
{ "path": "../src" },
]
}