13 lines
264 B
TypeScript
13 lines
264 B
TypeScript
|
|
import { defineConfig } from "vitest/config";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Vitest configuration for the CLI package.
|
||
|
|
* Disables worker threads to avoid pool recursion issues in sandbox.
|
||
|
|
*/
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
threads: false,
|
||
|
|
environment: "node",
|
||
|
|
},
|
||
|
|
});
|