@@ -29,6 +29,7 @@ test('redirect.dts.path: true with redirect.dts.extension: false - default', asy
2929 export * from './foo';
3030 export * from './logger';
3131 export type { Foo } from './types';
32+ export { Router } from 'express';
3233 export * from '../../../compile/prebundle-pkg';
3334 export type { Bar } from './types';
3435 export * from './foo';
@@ -77,6 +78,7 @@ test('redirect.dts.path: false with redirect.dts.extension: false', async () =>
7778 export * from '@src/foo';
7879 export * from '@src/logger';
7980 export type { Foo } from '@src/types';
81+ export { Router } from 'express';
8082 export * from 'prebundle-pkg';
8183 export type { Bar } from 'types';
8284 export * from './foo';
@@ -125,6 +127,7 @@ test('redirect.dts.path: true with redirect.dts.extension: true', async () => {
125127 export * from './foo/index.js';
126128 export * from './logger.js';
127129 export type { Foo } from './types.js';
130+ export { Router } from 'express';
128131 export * from '../../../compile/prebundle-pkg';
129132 export type { Bar } from './types.js';
130133 export * from './foo/index.js';
@@ -173,6 +176,7 @@ test('redirect.dts.path: false with dts.redirect.extension: true', async () => {
173176 export * from '@src/foo';
174177 export * from '@src/logger';
175178 export type { Foo } from '@src/types';
179+ export { Router } from 'express';
176180 export * from 'prebundle-pkg';
177181 export type { Bar } from 'types';
178182 export * from './foo/index.js';
@@ -228,6 +232,7 @@ test('redirect.dts.extension: true with dts.autoExtension: true', async () => {
228232 export * from './foo/index.mjs';
229233 export * from './logger.mjs';
230234 export type { Foo } from './types.mjs';
235+ export { Router } from 'express';
231236 export * from '../../compile/prebundle-pkg';
232237 export type { Bar } from './types.mjs';
233238 export * from './foo/index.mjs';
@@ -243,6 +248,7 @@ test('redirect.dts.extension: true with dts.autoExtension: true', async () => {
243248 export * from './foo/index.js';
244249 export * from './logger.js';
245250 export type { Foo } from './types.js';
251+ export { Router } from 'express';
246252 export * from '../../compile/prebundle-pkg';
247253 export type { Bar } from './types.js';
248254 export * from './foo/index.js';
0 commit comments