Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-Claude) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
11 lines
218 B
TypeScript
11 lines
218 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
passWithNoTests: true,
|
|
exclude: ['**/node_modules/**', '**/dist/**'],
|
|
},
|
|
});
|