mirror of
https://github.com/garronej/ts-ci.git
synced 2025-11-30 21:43:05 +00:00
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
|
|
import { defineConfig } from "vitest/config";
|
||
|
|
|
||
|
|
// ref: https://vitest.dev/config/
|
||
|
|
export default defineConfig({
|
||
|
|
"test": {
|
||
|
|
"watch": false
|
||
|
|
}
|
||
|
|
});
|