@powerlines/deepkit 0.5.2 → 0.5.3

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 (45) hide show
  1. package/dist/capnp.cjs +49 -48
  2. package/dist/capnp.js +4 -3
  3. package/dist/{chunk-C7BRLIIA.js → chunk-35PNVYKI.js} +4 -4
  4. package/dist/chunk-3GQAWCBQ.js +10 -0
  5. package/dist/{chunk-QABG54Y3.cjs → chunk-3GRTJOID.cjs} +9 -9
  6. package/dist/{chunk-6QPIKQMO.cjs → chunk-3PKIT7K2.cjs} +4 -4
  7. package/dist/{chunk-MEMIQ5AA.js → chunk-47WBQTA6.js} +1 -1
  8. package/dist/chunk-4UQ4UDET.cjs +19685 -0
  9. package/dist/chunk-5NPGWGPO.cjs +109 -0
  10. package/dist/{chunk-VMRRVNO2.cjs → chunk-B47NLUDW.cjs} +2 -2
  11. package/dist/chunk-BGYQAVKQ.cjs +13 -0
  12. package/dist/chunk-F5QUFY7D.cjs +135 -0
  13. package/dist/{chunk-2ODODKQQ.js → chunk-GVS5O43Z.js} +2 -2
  14. package/dist/{chunk-LPLPOVLC.js → chunk-JSH5MVQG.js} +2 -2
  15. package/dist/{chunk-EKHXI2JI.cjs → chunk-KDKCOXXC.cjs} +5 -5
  16. package/dist/chunk-KWUXT6EF.js +127 -0
  17. package/dist/{chunk-J2FVIV7W.cjs → chunk-MSO7PT57.cjs} +126 -126
  18. package/dist/chunk-O2LKJ62Q.cjs +2863 -0
  19. package/dist/chunk-U7WEV6HK.js +19678 -0
  20. package/dist/chunk-W423FBJ2.js +2854 -0
  21. package/dist/{chunk-I5CVIT7W.js → chunk-XI47ZADG.js} +42 -42
  22. package/dist/chunk-XU55W26B.js +109 -0
  23. package/dist/esbuild-plugin.cjs +6 -5
  24. package/dist/esbuild-plugin.js +5 -4
  25. package/dist/index.cjs +68 -67
  26. package/dist/index.js +10 -9
  27. package/dist/reflect-type.cjs +8 -7
  28. package/dist/reflect-type.js +7 -6
  29. package/dist/resolve-reflections.cjs +3 -3
  30. package/dist/resolve-reflections.js +2 -2
  31. package/dist/transformer.cjs +5 -4
  32. package/dist/transformer.js +3 -2
  33. package/dist/transpile.cjs +5 -4
  34. package/dist/transpile.js +4 -3
  35. package/dist/utilities.cjs +11 -10
  36. package/dist/utilities.js +4 -3
  37. package/package.json +4 -4
  38. package/dist/chunk-7J3ZDT6O.cjs +0 -30
  39. package/dist/chunk-GRNJVY7I.cjs +0 -19
  40. package/dist/chunk-IRPJW6HH.js +0 -16
  41. package/dist/chunk-J4SVRFV4.js +0 -127
  42. package/dist/chunk-MNUBEEIW.js +0 -41
  43. package/dist/chunk-QLKLDV3V.cjs +0 -135
  44. package/dist/chunk-VXZTOOL6.cjs +0 -69
  45. package/dist/chunk-XGQQM64U.js +0 -8
@@ -1,127 +0,0 @@
1
- import { type_exports } from './chunk-XGQQM64U.js';
2
- import { __name } from './chunk-IRPJW6HH.js';
3
- import { getUniqueBy } from '@stryke/helpers/get-unique';
4
- import { StormJSON } from '@stryke/json/storm-json';
5
- import { isNull } from '@stryke/type-checks/is-null';
6
- import { isString } from '@stryke/type-checks/is-string';
7
- import { isUndefined } from '@stryke/type-checks/is-undefined';
8
-
9
- function stringifyDefaultValue(property, value) {
10
- return stringifyValue(property.type, value ?? property.getDefaultValue());
11
- }
12
- __name(stringifyDefaultValue, "stringifyDefaultValue");
13
- function stringifyStringValue(value) {
14
- return `"${String(value).replaceAll('"', '\\"')}"`;
15
- }
16
- __name(stringifyStringValue, "stringifyStringValue");
17
- function stringifyValue(type, value) {
18
- return isUndefined(value) ? "undefined" : isNull(value) ? "null" : type.kind === type_exports.ReflectionKind.boolean ? String(value).trim().toLowerCase() === "true" ? "true" : "false" : type.kind === type_exports.ReflectionKind.string || type.kind === type_exports.ReflectionKind.literal && isString(type.literal) ? stringifyStringValue(value) : type.kind === type_exports.ReflectionKind.enum ? getEnumReflectionType(type).kind === type_exports.ReflectionKind.string ? stringifyStringValue(value) : `${String(value)}` : type.kind === type_exports.ReflectionKind.union ? isStringUnion(type) ? stringifyStringValue(value) : `${String(value)}` : type.kind === type_exports.ReflectionKind.array ? stringifyStringValue(StormJSON.stringify(value)) : type.kind === type_exports.ReflectionKind.object || type.kind === type_exports.ReflectionKind.objectLiteral ? StormJSON.stringify(value) : type.kind === type_exports.ReflectionKind.property || type.kind === type_exports.ReflectionKind.parameter ? stringifyValue(type.type, value) : String(value);
19
- }
20
- __name(stringifyValue, "stringifyValue");
21
- function getEnumReflectionType(type) {
22
- if (type.kind !== type_exports.ReflectionKind.enum) {
23
- throw new Error(`Expected a TypeEnum, but received ${type.kind}.`);
24
- }
25
- const unique = getUniqueBy(type.values.filter((value) => value !== void 0 && value !== null), (enumMember) => isString(enumMember) ? {
26
- kind: type_exports.ReflectionKind.string
27
- } : {
28
- kind: type_exports.ReflectionKind.number
29
- });
30
- if (unique.length === 0) {
31
- throw new Error(`No valid enum members could be found.`);
32
- }
33
- return unique[0] && isString(unique[0]) ? {
34
- kind: type_exports.ReflectionKind.string
35
- } : {
36
- kind: type_exports.ReflectionKind.number
37
- };
38
- }
39
- __name(getEnumReflectionType, "getEnumReflectionType");
40
- function getUnionTypes(type) {
41
- if (type.kind === type_exports.ReflectionKind.union && type.types.length > 0) {
42
- return getUniqueBy(type.types, (member) => member.kind);
43
- }
44
- throw new Error(`Expected a TypeUnion, but received ${type.kind}.`);
45
- }
46
- __name(getUnionTypes, "getUnionTypes");
47
- function isStringUnion(type) {
48
- return getUnionTypes(type).some((member) => member.kind === type_exports.ReflectionKind.string || member.kind === type_exports.ReflectionKind.literal && isString(member.literal));
49
- }
50
- __name(isStringUnion, "isStringUnion");
51
- function kindToName(kind) {
52
- if (kind === type_exports.ReflectionKind.void) {
53
- return "void";
54
- } else if (kind === type_exports.ReflectionKind.never) {
55
- return "never";
56
- } else if (kind === type_exports.ReflectionKind.null) {
57
- return "null";
58
- } else if (kind === type_exports.ReflectionKind.undefined) {
59
- return "undefined";
60
- } else if (kind === type_exports.ReflectionKind.symbol) {
61
- return "symbol";
62
- } else if (kind === type_exports.ReflectionKind.bigint) {
63
- return "bigint";
64
- } else if (kind === type_exports.ReflectionKind.number) {
65
- return "number";
66
- } else if (kind === type_exports.ReflectionKind.string) {
67
- return "string";
68
- } else if (kind === type_exports.ReflectionKind.boolean) {
69
- return "boolean";
70
- } else if (kind === type_exports.ReflectionKind.literal) {
71
- return "literal";
72
- } else if (kind === type_exports.ReflectionKind.class) {
73
- return "class";
74
- } else if (kind === type_exports.ReflectionKind.array) {
75
- return "array";
76
- } else if (kind === type_exports.ReflectionKind.object) {
77
- return "object";
78
- } else if (kind === type_exports.ReflectionKind.objectLiteral) {
79
- return "objectLiteral";
80
- } else if (kind === type_exports.ReflectionKind.union) {
81
- return "union";
82
- } else if (kind === type_exports.ReflectionKind.enum) {
83
- return "enum";
84
- } else if (kind === type_exports.ReflectionKind.regexp) {
85
- return "regexp";
86
- } else if (kind === type_exports.ReflectionKind.templateLiteral) {
87
- return "templateLiteral";
88
- } else if (kind === type_exports.ReflectionKind.property) {
89
- return "property";
90
- } else if (kind === type_exports.ReflectionKind.method) {
91
- return "method";
92
- } else if (kind === type_exports.ReflectionKind.function) {
93
- return "function";
94
- } else if (kind === type_exports.ReflectionKind.parameter) {
95
- return "parameter";
96
- } else if (kind === type_exports.ReflectionKind.promise) {
97
- return "promise";
98
- } else if (kind === type_exports.ReflectionKind.typeParameter) {
99
- return "typeParameter";
100
- } else if (kind === type_exports.ReflectionKind.tuple) {
101
- return "tuple";
102
- } else if (kind === type_exports.ReflectionKind.tupleMember) {
103
- return "tupleMember";
104
- } else if (kind === type_exports.ReflectionKind.enumMember) {
105
- return "enumMember";
106
- } else if (kind === type_exports.ReflectionKind.rest) {
107
- return "rest";
108
- } else if (kind === type_exports.ReflectionKind.indexSignature) {
109
- return "indexSignature";
110
- } else if (kind === type_exports.ReflectionKind.propertySignature) {
111
- return "propertySignature";
112
- } else if (kind === type_exports.ReflectionKind.methodSignature) {
113
- return "methodSignature";
114
- } else if (kind === type_exports.ReflectionKind.infer) {
115
- return "infer";
116
- } else if (kind === type_exports.ReflectionKind.callSignature) {
117
- return "callSignature";
118
- } else if (kind === type_exports.ReflectionKind.any) {
119
- return "any";
120
- } else if (kind === type_exports.ReflectionKind.intersection) {
121
- return "intersection";
122
- }
123
- return "unknown";
124
- }
125
- __name(kindToName, "kindToName");
126
-
127
- export { getEnumReflectionType, getUnionTypes, isStringUnion, kindToName, stringifyDefaultValue, stringifyStringValue, stringifyValue };
@@ -1,41 +0,0 @@
1
- import { __reExport, __name } from './chunk-IRPJW6HH.js';
2
- import * as type_compiler_star from '@deepkit/type-compiler';
3
- import * as compiler_star from '@deepkit/type-compiler/compiler';
4
- import * as config_star from '@deepkit/type-compiler/config';
5
- import defu from 'defu';
6
-
7
- // src/vendor/type-compiler/index.ts
8
- var type_compiler_exports = {};
9
- __reExport(type_compiler_exports, type_compiler_star);
10
- __reExport(type_compiler_exports, compiler_star);
11
- __reExport(type_compiler_exports, config_star);
12
- var cache = new type_compiler_exports.Cache();
13
- function createTransformer(context, options = {}) {
14
- return /* @__PURE__ */ __name(function transformer(ctx) {
15
- cache.tick();
16
- return new type_compiler_exports.ReflectionTransformer(ctx, cache).withReflection(defu(options, {
17
- reflection: context.tsconfig.tsconfigJson.compilerOptions?.reflection || context.tsconfig.tsconfigJson.reflection,
18
- reflectionLevel: context.tsconfig.tsconfigJson.compilerOptions?.reflectionLevel || context.tsconfig.tsconfigJson.reflectionLevel
19
- }, {
20
- exclude: [],
21
- reflection: "default",
22
- reflectionLevel: "minimal"
23
- }));
24
- }, "transformer");
25
- }
26
- __name(createTransformer, "createTransformer");
27
- function createDeclarationTransformer(context, options = {}) {
28
- return /* @__PURE__ */ __name(function declarationTransformer(ctx) {
29
- return new type_compiler_exports.DeclarationTransformer(ctx, cache).withReflection(defu(options, {
30
- reflection: context.tsconfig.tsconfigJson.compilerOptions?.reflection || context.tsconfig.tsconfigJson.reflection,
31
- reflectionLevel: context.tsconfig.tsconfigJson.compilerOptions?.reflectionLevel || context.tsconfig.tsconfigJson.reflectionLevel
32
- }, {
33
- exclude: [],
34
- reflection: "default",
35
- reflectionLevel: "minimal"
36
- }));
37
- }, "declarationTransformer");
38
- }
39
- __name(createDeclarationTransformer, "createDeclarationTransformer");
40
-
41
- export { createDeclarationTransformer, createTransformer };
@@ -1,135 +0,0 @@
1
- 'use strict';
2
-
3
- var chunk7J3ZDT6O_cjs = require('./chunk-7J3ZDT6O.cjs');
4
- var chunkGRNJVY7I_cjs = require('./chunk-GRNJVY7I.cjs');
5
- var getUnique = require('@stryke/helpers/get-unique');
6
- var stormJson = require('@stryke/json/storm-json');
7
- var isNull = require('@stryke/type-checks/is-null');
8
- var isString = require('@stryke/type-checks/is-string');
9
- var isUndefined = require('@stryke/type-checks/is-undefined');
10
-
11
- function stringifyDefaultValue(property, value) {
12
- return stringifyValue(property.type, value ?? property.getDefaultValue());
13
- }
14
- chunkGRNJVY7I_cjs.__name(stringifyDefaultValue, "stringifyDefaultValue");
15
- function stringifyStringValue(value) {
16
- return `"${String(value).replaceAll('"', '\\"')}"`;
17
- }
18
- chunkGRNJVY7I_cjs.__name(stringifyStringValue, "stringifyStringValue");
19
- function stringifyValue(type, value) {
20
- return isUndefined.isUndefined(value) ? "undefined" : isNull.isNull(value) ? "null" : type.kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.boolean ? String(value).trim().toLowerCase() === "true" ? "true" : "false" : type.kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.string || type.kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.literal && isString.isString(type.literal) ? stringifyStringValue(value) : type.kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.enum ? getEnumReflectionType(type).kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.string ? stringifyStringValue(value) : `${String(value)}` : type.kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.union ? isStringUnion(type) ? stringifyStringValue(value) : `${String(value)}` : type.kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.array ? stringifyStringValue(stormJson.StormJSON.stringify(value)) : type.kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.object || type.kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.objectLiteral ? stormJson.StormJSON.stringify(value) : type.kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.property || type.kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.parameter ? stringifyValue(type.type, value) : String(value);
21
- }
22
- chunkGRNJVY7I_cjs.__name(stringifyValue, "stringifyValue");
23
- function getEnumReflectionType(type) {
24
- if (type.kind !== chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.enum) {
25
- throw new Error(`Expected a TypeEnum, but received ${type.kind}.`);
26
- }
27
- const unique = getUnique.getUniqueBy(type.values.filter((value) => value !== void 0 && value !== null), (enumMember) => isString.isString(enumMember) ? {
28
- kind: chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.string
29
- } : {
30
- kind: chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.number
31
- });
32
- if (unique.length === 0) {
33
- throw new Error(`No valid enum members could be found.`);
34
- }
35
- return unique[0] && isString.isString(unique[0]) ? {
36
- kind: chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.string
37
- } : {
38
- kind: chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.number
39
- };
40
- }
41
- chunkGRNJVY7I_cjs.__name(getEnumReflectionType, "getEnumReflectionType");
42
- function getUnionTypes(type) {
43
- if (type.kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.union && type.types.length > 0) {
44
- return getUnique.getUniqueBy(type.types, (member) => member.kind);
45
- }
46
- throw new Error(`Expected a TypeUnion, but received ${type.kind}.`);
47
- }
48
- chunkGRNJVY7I_cjs.__name(getUnionTypes, "getUnionTypes");
49
- function isStringUnion(type) {
50
- return getUnionTypes(type).some((member) => member.kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.string || member.kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.literal && isString.isString(member.literal));
51
- }
52
- chunkGRNJVY7I_cjs.__name(isStringUnion, "isStringUnion");
53
- function kindToName(kind) {
54
- if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.void) {
55
- return "void";
56
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.never) {
57
- return "never";
58
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.null) {
59
- return "null";
60
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.undefined) {
61
- return "undefined";
62
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.symbol) {
63
- return "symbol";
64
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.bigint) {
65
- return "bigint";
66
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.number) {
67
- return "number";
68
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.string) {
69
- return "string";
70
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.boolean) {
71
- return "boolean";
72
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.literal) {
73
- return "literal";
74
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.class) {
75
- return "class";
76
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.array) {
77
- return "array";
78
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.object) {
79
- return "object";
80
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.objectLiteral) {
81
- return "objectLiteral";
82
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.union) {
83
- return "union";
84
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.enum) {
85
- return "enum";
86
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.regexp) {
87
- return "regexp";
88
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.templateLiteral) {
89
- return "templateLiteral";
90
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.property) {
91
- return "property";
92
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.method) {
93
- return "method";
94
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.function) {
95
- return "function";
96
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.parameter) {
97
- return "parameter";
98
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.promise) {
99
- return "promise";
100
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.typeParameter) {
101
- return "typeParameter";
102
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.tuple) {
103
- return "tuple";
104
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.tupleMember) {
105
- return "tupleMember";
106
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.enumMember) {
107
- return "enumMember";
108
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.rest) {
109
- return "rest";
110
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.indexSignature) {
111
- return "indexSignature";
112
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.propertySignature) {
113
- return "propertySignature";
114
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.methodSignature) {
115
- return "methodSignature";
116
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.infer) {
117
- return "infer";
118
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.callSignature) {
119
- return "callSignature";
120
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.any) {
121
- return "any";
122
- } else if (kind === chunk7J3ZDT6O_cjs.type_exports.ReflectionKind.intersection) {
123
- return "intersection";
124
- }
125
- return "unknown";
126
- }
127
- chunkGRNJVY7I_cjs.__name(kindToName, "kindToName");
128
-
129
- exports.getEnumReflectionType = getEnumReflectionType;
130
- exports.getUnionTypes = getUnionTypes;
131
- exports.isStringUnion = isStringUnion;
132
- exports.kindToName = kindToName;
133
- exports.stringifyDefaultValue = stringifyDefaultValue;
134
- exports.stringifyStringValue = stringifyStringValue;
135
- exports.stringifyValue = stringifyValue;
@@ -1,69 +0,0 @@
1
- 'use strict';
2
-
3
- var chunkGRNJVY7I_cjs = require('./chunk-GRNJVY7I.cjs');
4
- var type_compiler_star = require('@deepkit/type-compiler');
5
- var compiler_star = require('@deepkit/type-compiler/compiler');
6
- var config_star = require('@deepkit/type-compiler/config');
7
- var defu = require('defu');
8
-
9
- function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
10
-
11
- function _interopNamespace(e) {
12
- if (e && e.__esModule) return e;
13
- var n = Object.create(null);
14
- if (e) {
15
- Object.keys(e).forEach(function (k) {
16
- if (k !== 'default') {
17
- var d = Object.getOwnPropertyDescriptor(e, k);
18
- Object.defineProperty(n, k, d.get ? d : {
19
- enumerable: true,
20
- get: function () { return e[k]; }
21
- });
22
- }
23
- });
24
- }
25
- n.default = e;
26
- return Object.freeze(n);
27
- }
28
-
29
- var type_compiler_star__namespace = /*#__PURE__*/_interopNamespace(type_compiler_star);
30
- var compiler_star__namespace = /*#__PURE__*/_interopNamespace(compiler_star);
31
- var config_star__namespace = /*#__PURE__*/_interopNamespace(config_star);
32
- var defu__default = /*#__PURE__*/_interopDefault(defu);
33
-
34
- // src/vendor/type-compiler/index.ts
35
- var type_compiler_exports = {};
36
- chunkGRNJVY7I_cjs.__reExport(type_compiler_exports, type_compiler_star__namespace);
37
- chunkGRNJVY7I_cjs.__reExport(type_compiler_exports, compiler_star__namespace);
38
- chunkGRNJVY7I_cjs.__reExport(type_compiler_exports, config_star__namespace);
39
- var cache = new type_compiler_exports.Cache();
40
- function createTransformer(context, options = {}) {
41
- return /* @__PURE__ */ chunkGRNJVY7I_cjs.__name(function transformer(ctx) {
42
- cache.tick();
43
- return new type_compiler_exports.ReflectionTransformer(ctx, cache).withReflection(defu__default.default(options, {
44
- reflection: context.tsconfig.tsconfigJson.compilerOptions?.reflection || context.tsconfig.tsconfigJson.reflection,
45
- reflectionLevel: context.tsconfig.tsconfigJson.compilerOptions?.reflectionLevel || context.tsconfig.tsconfigJson.reflectionLevel
46
- }, {
47
- exclude: [],
48
- reflection: "default",
49
- reflectionLevel: "minimal"
50
- }));
51
- }, "transformer");
52
- }
53
- chunkGRNJVY7I_cjs.__name(createTransformer, "createTransformer");
54
- function createDeclarationTransformer(context, options = {}) {
55
- return /* @__PURE__ */ chunkGRNJVY7I_cjs.__name(function declarationTransformer(ctx) {
56
- return new type_compiler_exports.DeclarationTransformer(ctx, cache).withReflection(defu__default.default(options, {
57
- reflection: context.tsconfig.tsconfigJson.compilerOptions?.reflection || context.tsconfig.tsconfigJson.reflection,
58
- reflectionLevel: context.tsconfig.tsconfigJson.compilerOptions?.reflectionLevel || context.tsconfig.tsconfigJson.reflectionLevel
59
- }, {
60
- exclude: [],
61
- reflection: "default",
62
- reflectionLevel: "minimal"
63
- }));
64
- }, "declarationTransformer");
65
- }
66
- chunkGRNJVY7I_cjs.__name(createDeclarationTransformer, "createDeclarationTransformer");
67
-
68
- exports.createDeclarationTransformer = createDeclarationTransformer;
69
- exports.createTransformer = createTransformer;
@@ -1,8 +0,0 @@
1
- import { __reExport } from './chunk-IRPJW6HH.js';
2
- import * as type_star from '@deepkit/type';
3
-
4
- // src/vendor/type.ts
5
- var type_exports = {};
6
- __reExport(type_exports, type_star);
7
-
8
- export { type_exports };