@storm-software/workspace-tools 1.43.21 → 1.44.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,5 @@
1
+ export interface TypiaExecutorSchema {
2
+ entry: string;
3
+ outputPath: string;
4
+ tsConfig: string;
5
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "$id": "typia",
4
+ "version": 2,
5
+ "title": "Typia Generate Executor",
6
+ "description": "Run the Typia generator to create runtime type validators",
7
+ "type": "object",
8
+ "properties": {
9
+ "entry": {
10
+ "type": "string",
11
+ "description": "The path to the typia entry file, relative to project.",
12
+ "alias": "main",
13
+ "default": "{sourceRoot}/index.ts"
14
+ },
15
+ "outputPath": {
16
+ "type": "string",
17
+ "description": "The output path of the generated files.",
18
+ "x-completion-type": "directory",
19
+ "x-priority": "important",
20
+ "default": "{sourceRoot}/__generated__/typia/index.ts"
21
+ },
22
+ "tsConfig": {
23
+ "type": "string",
24
+ "description": "The path to the `tsconfig.json` file.",
25
+ "x-completion-type": "file",
26
+ "x-completion-glob": "tsconfig.*.json",
27
+ "x-priority": "important",
28
+ "default": "tsconfig.json"
29
+ }
30
+ },
31
+ "required": ["entry", "outputPath", "tsConfig"]
32
+ }