We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
vitejs
Learn more about funding links in repositories.
Report abuse
1 parent e8880f0 commit b6155a1Copy full SHA for b6155a1
packages/vite/src/node/optimizer/scan.ts
@@ -207,6 +207,7 @@ async function prepareEsbuildScanner(
207
208
const {
209
plugins = [],
210
+ tsconfig,
211
tsconfigRaw,
212
...esbuildOptions
213
} = config.optimizeDeps?.esbuildOptions ?? {}
@@ -222,8 +223,9 @@ async function prepareEsbuildScanner(
222
223
format: 'esm',
224
logLevel: 'silent',
225
plugins: [...plugins, plugin],
226
227
tsconfigRaw:
- typeof tsconfigRaw === 'string'
228
+ tsconfig || typeof tsconfigRaw === 'string'
229
? tsconfigRaw
230
: {
231
...tsconfigRaw,
0 commit comments