@pezkuwi/typegen 16.5.5 → 16.5.6

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.
Files changed (193) hide show
  1. package/LICENSE +201 -0
  2. package/augment.js +2 -0
  3. package/bundle.js +2 -0
  4. package/cjs/augment.d.ts +2 -0
  5. package/cjs/augment.js +4 -0
  6. package/cjs/bundle.d.ts +2 -0
  7. package/cjs/bundle.js +7 -0
  8. package/cjs/extractChain.js +44 -0
  9. package/cjs/fromChain.js +95 -0
  10. package/cjs/fromDefs.js +82 -0
  11. package/cjs/generate/consts.js +91 -0
  12. package/cjs/generate/errors.js +59 -0
  13. package/cjs/generate/events.js +139 -0
  14. package/cjs/generate/index.js +23 -0
  15. package/cjs/generate/interfaceRegistry.js +64 -0
  16. package/cjs/generate/lookup.js +240 -0
  17. package/cjs/generate/query.js +140 -0
  18. package/cjs/generate/rpc.js +115 -0
  19. package/cjs/generate/runtime.js +233 -0
  20. package/{build → cjs}/generate/tsDef.d.ts +1 -1
  21. package/cjs/generate/tsDef.js +254 -0
  22. package/cjs/generate/tx.js +121 -0
  23. package/cjs/generate/types.js +16 -0
  24. package/cjs/index.js +5 -0
  25. package/cjs/interfacesTs.js +28 -0
  26. package/cjs/metadataMd.js +652 -0
  27. package/cjs/package.json +3 -0
  28. package/cjs/packageDetect.js +8 -0
  29. package/cjs/packageInfo.js +4 -0
  30. package/cjs/util/assert.js +15 -0
  31. package/cjs/util/derived.js +128 -0
  32. package/cjs/util/docs.js +10 -0
  33. package/cjs/util/file.js +33 -0
  34. package/{build → cjs}/util/formatting.d.ts +1 -1
  35. package/cjs/util/formatting.js +237 -0
  36. package/cjs/util/imports.js +126 -0
  37. package/{build → cjs}/util/index.d.ts +1 -0
  38. package/cjs/util/index.js +39 -0
  39. package/cjs/util/initMeta.js +22 -0
  40. package/cjs/util/register.js +10 -0
  41. package/cjs/util/wsMeta.js +60 -0
  42. package/extractChain.d.ts +1 -0
  43. package/extractChain.js +40 -0
  44. package/fromChain.d.ts +1 -0
  45. package/fromChain.js +91 -0
  46. package/fromDefs.d.ts +1 -0
  47. package/fromDefs.js +78 -0
  48. package/generate/consts.d.ts +5 -0
  49. package/generate/consts.js +87 -0
  50. package/generate/errors.d.ts +4 -0
  51. package/generate/errors.js +55 -0
  52. package/generate/events.d.ts +5 -0
  53. package/generate/events.js +135 -0
  54. package/{src/generate/index.ts → generate/index.d.ts} +0 -3
  55. package/generate/index.js +10 -0
  56. package/generate/interfaceRegistry.d.ts +4 -0
  57. package/generate/interfaceRegistry.js +59 -0
  58. package/generate/lookup.d.ts +4 -0
  59. package/generate/lookup.js +235 -0
  60. package/generate/query.d.ts +5 -0
  61. package/generate/query.js +136 -0
  62. package/generate/rpc.d.ts +6 -0
  63. package/generate/rpc.js +110 -0
  64. package/generate/runtime.d.ts +7 -0
  65. package/generate/runtime.js +228 -0
  66. package/generate/tsDef.d.ts +16 -0
  67. package/generate/tsDef.js +246 -0
  68. package/generate/tx.d.ts +5 -0
  69. package/generate/tx.js +117 -0
  70. package/generate/types.d.ts +12 -0
  71. package/generate/types.js +13 -0
  72. package/index.d.ts +2 -0
  73. package/index.js +2 -0
  74. package/interfacesTs.d.ts +1 -0
  75. package/interfacesTs.js +24 -0
  76. package/metadataMd.d.ts +1 -0
  77. package/metadataMd.js +648 -0
  78. package/package.json +520 -24
  79. package/packageDetect.d.ts +1 -0
  80. package/{src/packageDetect.ts → packageDetect.js} +0 -8
  81. package/packageInfo.d.ts +6 -0
  82. package/packageInfo.js +1 -0
  83. package/scripts/{polkadot-types-chain-info.mjs → pezkuwi-types-chain-info.mjs} +1 -1
  84. package/scripts/{polkadot-types-from-chain.mjs → pezkuwi-types-from-chain.mjs} +1 -1
  85. package/scripts/{polkadot-types-from-defs.mjs → pezkuwi-types-from-defs.mjs} +1 -1
  86. package/{build/scripts/polkadot-types-internal-interfaces.mjs → scripts/pezkuwi-types-internal-interfaces.mjs} +1 -1
  87. package/{build/scripts/polkadot-types-internal-metadata.mjs → scripts/pezkuwi-types-internal-metadata.mjs} +1 -1
  88. package/{src/templates → templates}/calls.hbs +2 -2
  89. package/{src/templates → templates}/consts.hbs +2 -2
  90. package/{src/templates → templates}/errors.hbs +2 -2
  91. package/{src/templates → templates}/events.hbs +2 -2
  92. package/{src/templates → templates}/interfaceRegistry.hbs +2 -2
  93. package/{src/templates → templates}/lookup/types.hbs +2 -2
  94. package/{src/templates → templates}/query.hbs +2 -2
  95. package/{src/templates → templates}/rpc.hbs +2 -2
  96. package/{src/templates → templates}/tx.hbs +2 -2
  97. package/util/assert.d.ts +2 -0
  98. package/util/assert.js +10 -0
  99. package/util/derived.d.ts +4 -0
  100. package/util/derived.js +125 -0
  101. package/util/docs.d.ts +1 -0
  102. package/util/docs.js +6 -0
  103. package/util/file.d.ts +2 -0
  104. package/util/file.js +28 -0
  105. package/util/formatting.d.ts +11 -0
  106. package/util/formatting.js +230 -0
  107. package/util/imports.d.ts +23 -0
  108. package/util/imports.js +121 -0
  109. package/{src/util/index.ts → util/index.d.ts} +6 -8
  110. package/util/index.js +34 -0
  111. package/util/initMeta.d.ts +12 -0
  112. package/util/initMeta.js +19 -0
  113. package/util/register.d.ts +4 -0
  114. package/util/register.js +7 -0
  115. package/util/wsMeta.d.ts +4 -0
  116. package/util/wsMeta.js +55 -0
  117. package/build/scripts/polkadot-types-chain-info.mjs +0 -7
  118. package/build/scripts/polkadot-types-from-chain.mjs +0 -7
  119. package/build/scripts/polkadot-types-from-defs.mjs +0 -7
  120. package/scripts/polkadot-types-internal-interfaces.mjs +0 -7
  121. package/scripts/polkadot-types-internal-metadata.mjs +0 -7
  122. package/src/augment.ts +0 -5
  123. package/src/bundle.ts +0 -5
  124. package/src/extractChain.ts +0 -54
  125. package/src/fromChain.ts +0 -123
  126. package/src/fromDefs.ts +0 -106
  127. package/src/generate/consts.ts +0 -112
  128. package/src/generate/errors.ts +0 -75
  129. package/src/generate/events.ts +0 -165
  130. package/src/generate/interfaceRegistry.ts +0 -85
  131. package/src/generate/lookup.ts +0 -294
  132. package/src/generate/query.ts +0 -169
  133. package/src/generate/rpc.ts +0 -158
  134. package/src/generate/runtime.ts +0 -284
  135. package/src/generate/tsDef.ts +0 -321
  136. package/src/generate/tx.ts +0 -152
  137. package/src/generate/types.ts +0 -26
  138. package/src/index.ts +0 -6
  139. package/src/interfacesTs.ts +0 -35
  140. package/src/metadataMd.ts +0 -844
  141. package/src/packageInfo.ts +0 -6
  142. package/src/util/assert.ts +0 -18
  143. package/src/util/derived.spec.ts +0 -58
  144. package/src/util/derived.ts +0 -133
  145. package/src/util/docs.ts +0 -13
  146. package/src/util/file.ts +0 -42
  147. package/src/util/formatting.spec.ts +0 -30
  148. package/src/util/formatting.ts +0 -295
  149. package/src/util/imports.ts +0 -164
  150. package/src/util/initMeta.ts +0 -37
  151. package/src/util/register.ts +0 -12
  152. package/src/util/wsMeta.ts +0 -70
  153. package/tsconfig.build.json +0 -28
  154. package/tsconfig.build.tsbuildinfo +0 -1
  155. package/tsconfig.scripts.json +0 -19
  156. package/tsconfig.spec.json +0 -17
  157. /package/{build/augment.d.ts → augment.d.ts} +0 -0
  158. /package/{build/bundle.d.ts → bundle.d.ts} +0 -0
  159. /package/{build → cjs}/extractChain.d.ts +0 -0
  160. /package/{build → cjs}/fromChain.d.ts +0 -0
  161. /package/{build → cjs}/fromDefs.d.ts +0 -0
  162. /package/{build → cjs}/generate/consts.d.ts +0 -0
  163. /package/{build → cjs}/generate/errors.d.ts +0 -0
  164. /package/{build → cjs}/generate/events.d.ts +0 -0
  165. /package/{build → cjs}/generate/index.d.ts +0 -0
  166. /package/{build → cjs}/generate/interfaceRegistry.d.ts +0 -0
  167. /package/{build → cjs}/generate/lookup.d.ts +0 -0
  168. /package/{build → cjs}/generate/query.d.ts +0 -0
  169. /package/{build → cjs}/generate/rpc.d.ts +0 -0
  170. /package/{build → cjs}/generate/runtime.d.ts +0 -0
  171. /package/{build → cjs}/generate/tx.d.ts +0 -0
  172. /package/{build → cjs}/generate/types.d.ts +0 -0
  173. /package/{build → cjs}/index.d.ts +0 -0
  174. /package/{build → cjs}/interfacesTs.d.ts +0 -0
  175. /package/{build → cjs}/metadataMd.d.ts +0 -0
  176. /package/{build → cjs}/packageDetect.d.ts +0 -0
  177. /package/{build → cjs}/packageInfo.d.ts +0 -0
  178. /package/{build → cjs}/util/assert.d.ts +0 -0
  179. /package/{build → cjs}/util/derived.d.ts +0 -0
  180. /package/{build → cjs}/util/docs.d.ts +0 -0
  181. /package/{build → cjs}/util/file.d.ts +0 -0
  182. /package/{build → cjs}/util/imports.d.ts +0 -0
  183. /package/{build → cjs}/util/initMeta.d.ts +0 -0
  184. /package/{build → cjs}/util/register.d.ts +0 -0
  185. /package/{build → cjs}/util/wsMeta.d.ts +0 -0
  186. /package/{src/templates → templates}/docs.hbs +0 -0
  187. /package/{src/templates → templates}/header.hbs +0 -0
  188. /package/{src/templates → templates}/lookup/defs-named.hbs +0 -0
  189. /package/{src/templates → templates}/lookup/defs.hbs +0 -0
  190. /package/{src/templates → templates}/lookup/index.hbs +0 -0
  191. /package/{src/templates → templates}/tsDef/index.hbs +0 -0
  192. /package/{src/templates → templates}/tsDef/moduleTypes.hbs +0 -0
  193. /package/{src/templates → templates}/tsDef/types.hbs +0 -0
@@ -1,164 +0,0 @@
1
- // Copyright 2017-2025 @polkadot/typegen authors & contributors
2
- // SPDX-License-Identifier: Apache-2.0
3
-
4
- import * as codecClasses from '@pezkuwi/types/codec';
5
- import * as extrinsicClasses from '@pezkuwi/types/extrinsic';
6
- import * as genericClasses from '@pezkuwi/types/generic';
7
- import * as primitiveClasses from '@pezkuwi/types/primitive';
8
- import { getTypeDef, TypeDefInfo } from '@pezkuwi/types-create';
9
-
10
- export interface ModuleTypes {
11
- types: Record<string, unknown>;
12
- }
13
-
14
- // these map all the codec and primitive types for import, see the TypeImports below. If
15
- // we have an unseen type, it is `undefined`/`false`, if we need to import it, it is `true`
16
- type TypeExist = Record<string, boolean>;
17
-
18
- // local and absolute imports map to this format
19
- // { [moduleName]: { [typeName]: true } }
20
- type TypeExistMap = Record<string, TypeExist>;
21
-
22
- export interface TypeImports {
23
- codecTypes: TypeExist; // `import {} from '@pezkuwi/types/codec`
24
- extrinsicTypes: TypeExist; // `import {} from '@pezkuwi/types/extrinsic`
25
- genericTypes: TypeExist; // `import {} from '@pezkuwi/types/generic`
26
- ignoredTypes: string[]; // No need to import these types
27
- localTypes: TypeExistMap; // `import {} from '../something'`
28
- lookupTypes: TypeExistMap; // `import {} from '@pezkuwi/types/lookup`
29
- primitiveTypes: TypeExist; // `import {} from '@pezkuwi/types/primitive`
30
- metadataTypes: TypeExist; // `import {} from '@pezkuwi/types/metadata`
31
- typesTypes: TypeExist; // `import {} from '@pezkuwi/types/types`
32
- definitions: Record<string, ModuleTypes>; // all definitions
33
- typeToModule: Record<string, string>;
34
- }
35
-
36
- // returns the top-level types in the alternatives list, taking into account nested [], <> and () items
37
- // E.g. for the string '[a<b,c>, d | e]' we return the array ['a<b,c>', 'd', 'e']
38
- function splitAlternatives (type: string): string[] {
39
- const alternatives = [];
40
- let beginOfAlternative = 1;
41
- let level = 0;
42
-
43
- // we assume that the string starts with '['
44
- for (let i = 1, count = type.length; i < count; i++) {
45
- if (level === 0) {
46
- switch (type[i]) {
47
- case ']':
48
- case ',':
49
- case '|':
50
- alternatives.push(type.substring(beginOfAlternative, i).trim());
51
- beginOfAlternative = i + 1;
52
- break;
53
- }
54
- }
55
-
56
- switch (type[i]) {
57
- case '[':
58
- case '(':
59
- case '<':
60
- level++;
61
- break;
62
- case ']':
63
- case ')':
64
- case '>':
65
- level--;
66
- break;
67
- }
68
- }
69
-
70
- return alternatives;
71
- }
72
-
73
- // Maps the types as found to the source location. This is used to generate the
74
- // imports in the output file, dep-duped and sorted
75
- /** @internal */
76
- export function setImports (allDefs: Record<string, ModuleTypes>, imports: TypeImports, types: (string | null | undefined)[]): void {
77
- const { codecTypes, extrinsicTypes, genericTypes, ignoredTypes, localTypes, metadataTypes, primitiveTypes, typesTypes } = imports;
78
-
79
- types.filter((t): t is string => !!t).forEach((type): void => {
80
- if (ignoredTypes.includes(type)) {
81
- // do nothing
82
- } else if (['AnyNumber', 'CallFunction', 'Codec', 'IExtrinsic', 'IMethod', 'ITuple'].includes(type)) {
83
- typesTypes[type] = true;
84
- } else if (['Metadata', 'PortableRegistry'].includes(type)) {
85
- metadataTypes[type] = true;
86
- } else if ((codecClasses as Record<string, unknown>)[type]) {
87
- codecTypes[type] = true;
88
- } else if ((extrinsicClasses as Record<string, unknown>)[type]) {
89
- extrinsicTypes[type] = true;
90
- } else if ((genericClasses as Record<string, unknown>)[type]) {
91
- genericTypes[type] = true;
92
- } else if ((primitiveClasses as Record<string, unknown>)[type]) {
93
- primitiveTypes[type] = true;
94
- } else if (type.startsWith('[') && type.includes('|')) {
95
- const splitTypes = splitAlternatives(type);
96
-
97
- setImports(allDefs, imports, splitTypes);
98
- } else if (type.includes('<') || type.includes('(') || type.includes('[')) {
99
- // If the type is a bit special (tuple, fixed u8, nested type...), then we
100
- // need to parse it with `getTypeDef`.
101
- const typeDef = getTypeDef(type);
102
-
103
- setImports(allDefs, imports, [TypeDefInfo[typeDef.info]]);
104
-
105
- // TypeDef.sub is a `TypeDef | TypeDef[]`
106
- if (Array.isArray(typeDef.sub)) {
107
- typeDef.sub.forEach((subType) => setImports(allDefs, imports, [subType.lookupName || subType.type]));
108
- } else if (typeDef.sub && (typeDef.info !== TypeDefInfo.VecFixed || typeDef.sub.type !== 'u8')) {
109
- // typeDef.sub is a TypeDef in this case
110
- setImports(allDefs, imports, [typeDef.sub.lookupName || typeDef.sub.type]);
111
- }
112
- } else {
113
- // find this module inside the exports from the rest
114
- const [moduleName] = Object.entries(allDefs).find(([, { types }]): boolean =>
115
- Object.keys(types).includes(type)
116
- ) || [null];
117
-
118
- if (moduleName) {
119
- localTypes[moduleName][type] = true;
120
- }
121
- }
122
- });
123
- }
124
-
125
- // Create an Imports object, can be pre-filled with `ignoredTypes`
126
- /** @internal */
127
- export function createImports (importDefinitions: Record<string, Record<string, ModuleTypes>>, { types }: ModuleTypes = { types: {} }): TypeImports {
128
- const definitions = {} as Record<string, ModuleTypes>;
129
- const typeToModule = {} as Record<string, string>;
130
-
131
- Object.entries(importDefinitions).forEach(([packagePath, packageDef]): void => {
132
- Object.entries(packageDef).forEach(([name, moduleDef]): void => {
133
- const fullName = `${packagePath}/${name}`;
134
-
135
- definitions[fullName] = moduleDef;
136
-
137
- Object.keys(moduleDef.types).forEach((type): void => {
138
- if (typeToModule[type]) {
139
- console.warn(`\t\tWARN: Overwriting duplicated type '${type}' ${typeToModule[type]} -> ${fullName}`);
140
- }
141
-
142
- typeToModule[type] = fullName;
143
- });
144
- });
145
- });
146
-
147
- return {
148
- codecTypes: {},
149
- definitions,
150
- extrinsicTypes: {},
151
- genericTypes: {},
152
- ignoredTypes: Object.keys(types),
153
- localTypes: Object.keys(definitions).reduce((local: Record<string, TypeExist>, mod): Record<string, TypeExist> => {
154
- local[mod] = {};
155
-
156
- return local;
157
- }, {}),
158
- lookupTypes: {},
159
- metadataTypes: {},
160
- primitiveTypes: {},
161
- typeToModule,
162
- typesTypes: {}
163
- };
164
- }
@@ -1,37 +0,0 @@
1
- // Copyright 2017-2025 @polkadot/typegen authors & contributors
2
- // SPDX-License-Identifier: Apache-2.0
3
-
4
- import type { HexString } from '@pezkuwi/util/types';
5
- import type { ExtraTypes } from '../generate/types.js';
6
-
7
- import { Metadata, TypeRegistry } from '@pezkuwi/types';
8
-
9
- import { registerDefinitions } from './register.js';
10
-
11
- interface Result {
12
- metadata: Metadata;
13
- registry: TypeRegistry;
14
- }
15
-
16
- /**
17
- * This helper method has been transitioned to work with V14, V15 and up.
18
- */
19
- export function initMeta (staticMeta: HexString, extraTypes: ExtraTypes = {}): Result {
20
- const registry = new TypeRegistry();
21
-
22
- registerDefinitions(registry, extraTypes);
23
-
24
- let metadata: Metadata;
25
-
26
- try {
27
- const opaqueMetadata = registry.createType('Option<OpaqueMetadata>', registry.createType('Raw', staticMeta).toU8a()).unwrap();
28
-
29
- metadata = new Metadata(registry, opaqueMetadata.toHex());
30
- } catch {
31
- metadata = new Metadata(registry, staticMeta);
32
- }
33
-
34
- registry.setMetadata(metadata);
35
-
36
- return { metadata, registry };
37
- }
@@ -1,12 +0,0 @@
1
- // Copyright 2017-2025 @polkadot/typegen authors & contributors
2
- // SPDX-License-Identifier: Apache-2.0
3
-
4
- import type { TypeRegistry } from '@pezkuwi/types/create';
5
-
6
- export function registerDefinitions (registry: TypeRegistry, extras: Record<string, Record<string, { types: Record<string, any> }>>): void {
7
- Object.values(extras).forEach((def): void => {
8
- Object.values(def).forEach(({ types }): void => {
9
- registry.register(types);
10
- });
11
- });
12
- }
@@ -1,70 +0,0 @@
1
- // Copyright 2017-2025 @polkadot/typegen authors & contributors
2
- // SPDX-License-Identifier: Apache-2.0
3
-
4
- import type { HexString } from '@pezkuwi/util/types';
5
-
6
- import { promiseTracker } from '@pezkuwi/api/promise/decorateMethod';
7
- import { TypeRegistry } from '@pezkuwi/types';
8
- import { stringify, u8aToHex } from '@pezkuwi/util';
9
- import { WebSocket } from '@pezkuwi/x-ws';
10
-
11
- async function getWsData <T> (endpoint: string, method: 'rpc_methods' | 'state_call' | 'state_getMetadata' | 'state_getRuntimeVersion', params?: string[]): Promise<T> {
12
- return new Promise((resolve, reject): void => {
13
- const tracker = promiseTracker<T>(resolve, reject);
14
-
15
- try {
16
- const websocket = new WebSocket(endpoint);
17
-
18
- websocket.onclose = (event: { code: number; reason: string }): void => {
19
- if (event.code !== 1000) {
20
- tracker.reject(new Error(`disconnected, code: '${event.code}' reason: '${event.reason}'`));
21
- }
22
- };
23
-
24
- websocket.onerror = (event: unknown): void => {
25
- tracker.reject(new Error(`WebSocket error:: ${stringify(event)}`));
26
- };
27
-
28
- websocket.onopen = (): void => {
29
- console.log('connected');
30
- params
31
- ? websocket.send(`{"id":"1","jsonrpc":"2.0","method":"${method}","params":[${params.map((param) => `"${param}"`).join(',')}]}`)
32
- : websocket.send(`{"id":"1","jsonrpc":"2.0","method":"${method}","params":[]}`);
33
- };
34
-
35
- websocket.onmessage = (message: { data: string }): void => {
36
- try {
37
- tracker.resolve((JSON.parse(message.data) as { result: T }).result);
38
- } catch (error) {
39
- tracker.reject(error as Error);
40
- }
41
-
42
- websocket.close();
43
- };
44
- } catch (error) {
45
- tracker.reject(error as Error);
46
- }
47
- });
48
- }
49
-
50
- export async function getMetadataViaWs (endpoint: string, metadataVer?: number): Promise<HexString> {
51
- const registry = new TypeRegistry();
52
-
53
- if (metadataVer) {
54
- return await getWsData<HexString>(endpoint, 'state_call', ['Metadata_metadata_at_version', u8aToHex(registry.createType('u32', metadataVer).toU8a())]);
55
- } else {
56
- return await getWsData<HexString>(endpoint, 'state_getMetadata');
57
- }
58
- }
59
-
60
- export async function getRpcMethodsViaWs (endpoint: string): Promise<string[]> {
61
- const result = await getWsData<{ methods: string[] }>(endpoint, 'rpc_methods');
62
-
63
- return result.methods;
64
- }
65
-
66
- export async function getRuntimeVersionViaWs (endpoint: string): Promise<[apiHash: string, apiVersion: number][]> {
67
- const result = await getWsData<{ apis: [string, number][] }>(endpoint, 'state_getRuntimeVersion');
68
-
69
- return result.apis;
70
- }
@@ -1,28 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.base.json",
3
- "compilerOptions": {
4
- "baseUrl": "..",
5
- "outDir": "./build",
6
- "rootDir": "./src"
7
- },
8
- "include": [
9
- "src/**/*"
10
- ],
11
- "exclude": [
12
- "scripts/**/*",
13
- "**/*.spec.ts",
14
- "**/mod.ts"
15
- ],
16
- "references": [
17
- { "path": "../api/tsconfig.build.json" },
18
- { "path": "../api-augment/tsconfig.build.json" },
19
- { "path": "../api-derive/tsconfig.build.json" },
20
- { "path": "../rpc-augment/tsconfig.build.json" },
21
- { "path": "../rpc-provider/tsconfig.build.json" },
22
- { "path": "../types/tsconfig.build.json" },
23
- { "path": "../types-augment/tsconfig.build.json" },
24
- { "path": "../types-codec/tsconfig.build.json" },
25
- { "path": "../types-create/tsconfig.build.json" },
26
- { "path": "../types-support/tsconfig.build.json" }
27
- ]
28
- }