Set up the C solver core, Node API orchestration, TS GUI workflow, and engineering documentation with cleaned repo hygiene for private Git hosting. Made-with: Cursor
10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
fileParallelism: false,
|
|
maxConcurrency: 1,
|
|
testTimeout: 120000
|
|
}
|
|
});
|