vovk 3.0.0-draft.352 → 3.0.0-draft.355
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.
- package/cjs/types.d.ts +2 -1
- package/mjs/types.d.ts +2 -1
- package/package.json +1 -1
package/cjs/types.d.ts
CHANGED
|
@@ -292,6 +292,7 @@ type BundleConfig = {
|
|
|
292
292
|
dontDeleteTsClientOutDirAfter?: boolean;
|
|
293
293
|
package?: PackageJson;
|
|
294
294
|
readme?: ReadmeConfig;
|
|
295
|
+
reExports?: Record<string, string>;
|
|
295
296
|
tsdownBuildOptions?: Parameters<typeof build>[0];
|
|
296
297
|
} & ({
|
|
297
298
|
excludeSegments?: never;
|
|
@@ -329,7 +330,7 @@ type VovkUserConfig = {
|
|
|
329
330
|
modulesDir?: string;
|
|
330
331
|
rootEntry?: string;
|
|
331
332
|
origin?: string;
|
|
332
|
-
logLevel?: 'error' | 'trace' | 'debug' | 'info' | 'warn';
|
|
333
|
+
logLevel?: 'error' | 'trace' | 'debug' | 'info' | 'warn' | (string & {});
|
|
333
334
|
prettifyClient?: boolean;
|
|
334
335
|
libs?: {
|
|
335
336
|
ajv: KnownAny;
|
package/mjs/types.d.ts
CHANGED
|
@@ -292,6 +292,7 @@ type BundleConfig = {
|
|
|
292
292
|
dontDeleteTsClientOutDirAfter?: boolean;
|
|
293
293
|
package?: PackageJson;
|
|
294
294
|
readme?: ReadmeConfig;
|
|
295
|
+
reExports?: Record<string, string>;
|
|
295
296
|
tsdownBuildOptions?: Parameters<typeof build>[0];
|
|
296
297
|
} & ({
|
|
297
298
|
excludeSegments?: never;
|
|
@@ -329,7 +330,7 @@ type VovkUserConfig = {
|
|
|
329
330
|
modulesDir?: string;
|
|
330
331
|
rootEntry?: string;
|
|
331
332
|
origin?: string;
|
|
332
|
-
logLevel?: 'error' | 'trace' | 'debug' | 'info' | 'warn';
|
|
333
|
+
logLevel?: 'error' | 'trace' | 'debug' | 'info' | 'warn' | (string & {});
|
|
333
334
|
prettifyClient?: boolean;
|
|
334
335
|
libs?: {
|
|
335
336
|
ajv: KnownAny;
|