Fix Vite's bundled config loader so transient ESM config activity no longer creates unstable Vite Task cache inputs. The loader writes generated ESM configs beneath node_modules/.vite-temp and imports them with native Node ESM; Node reads the containing temporary directory during module resolution. Ignoring only the generated random config filename leaves the directory fingerprinted, causing restored caches to miss when that directory does not exist.
When the node_modules temporary location is used, make Vite Task ignore the entire node_modules/.vite-temp directory for both input and output tracking rather than only one random file. Bundled config loading must continue to return the exported config normally.