I have a large VUE 3 project using VITEST and coverage with C8/istanbul. When I run "vitest dev --coverage", or just "vitest run", something is creating a "dist" folder under my "test" folder.
Note this is NOT the dist folder that holds a compiled app. This is created by the testing facility, not the build facility.
This happens as follows: I run the test. If --coverage, I am watching for changes. I edit a test file, VITEST re-runs automatically, and some JS files are created from TS test files and placed into a dist folder under the test folder.
I have been trying to find a reason for this, as well as a directive to stop it. I have to delete the dist file every time.
Is there a flag for this behavior in either VUE or VITEST?