Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/vite/src/node/plugins/esbuild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ export async function reloadOnTsconfigChange(
// any json file in the tsconfig cache could have been used to compile ts
if (changedFile.endsWith('.json')) {
const cache = getTSConfigResolutionCache(server.config)
if (changedFile.endsWith('/tsconfig.json') || cache.size() > 0) {
if (changedFile.endsWith('/tsconfig.json') && cache.size() > 0) {
Comment thread
sapphi-red marked this conversation as resolved.
Outdated
server.config.logger.info(
`changed tsconfig file detected: ${changedFile} - Clearing cache and forcing full-reload to ensure TypeScript is compiled with updated config values.`,
{ clear: server.config.clearScreen, timestamp: true },
Expand Down
Loading