forked from vega/ts-json-schema-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ts-json-schema-generator.ts
86 lines (81 loc) · 2.98 KB
/
ts-json-schema-generator.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import { Command, Option } from "commander";
import stableStringify from "safe-stable-stringify";
import { createGenerator } from "./factory/generator";
import { Config, DEFAULT_CONFIG } from "./src/Config";
import { BaseError } from "./src/Error/BaseError";
import { formatError } from "./src/Utils/formatError";
import * as pkg from "./package.json";
import { dirname } from "path";
import { mkdirSync, writeFileSync } from "fs";
const args = new Command()
.option("-p, --path <path>", "Source file path")
.option("-t, --type <name>", "Type name")
.option("-i, --id <name>", "$id for generated schema")
.option("-f, --tsconfig <path>", "Custom tsconfig.json path")
.addOption(
new Option("-e, --expose <expose>", "Type exposing").choices(["all", "none", "export"]).default("export")
)
.addOption(
new Option("-j, --jsDoc <extended>", "Read JsDoc annotations")
.choices(["none", "basic", "extended"])
.default("extended")
)
.option("--minify", "Minify generated schema", false)
.option("--unstable", "Do not sort properties")
.option("--strict-tuples", "Do not allow additional items on tuples")
.option("--no-top-ref", "Do not create a top-level $ref definition")
.option("--no-type-check", "Skip type checks to improve performance")
.option("--no-ref-encode", "Do not encode references")
.option("-o, --out <file>", "Set the output file (default: stdout)")
.option(
"--validation-keywords [value]",
"Provide additional validation keywords to include",
(value: string, list: string[]) => list.concat(value),
[]
)
.option(
"--additional-properties",
"Allow additional properties for objects with no index signature (default: false)",
false
)
.version(pkg.version)
.parse(process.argv)
.opts();
const config: Config = {
...DEFAULT_CONFIG,
minify: args.minify,
path: args.path,
tsconfig: args.tsconfig,
type: args.type,
schemaId: args.id,
expose: args.expose,
topRef: args.topRef,
jsDoc: args.jsDoc,
sortProps: !args.unstable,
strictTuples: args.strictTuples,
skipTypeCheck: !args.typeCheck,
encodeRefs: args.refEncode,
extraTags: args.validationKeywords,
additionalProperties: args.additionalProperties,
};
try {
const schema = createGenerator(config).createSchema(args.type);
const stringify = config.sortProps ? stableStringify : JSON.stringify;
const schemaString = config.minify ? stringify(schema) : stringify(schema, null, 2);
if (args.out) {
// write to file
const outPath = dirname(args.out);
mkdirSync(outPath, { recursive: true });
writeFileSync(args.out, schemaString);
} else {
// write to stdout
process.stdout.write(`${schemaString}\n`);
}
} catch (error) {
if (error instanceof BaseError) {
process.stderr.write(formatError(error));
process.exit(1);
} else {
throw error;
}
}