mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-28 06:51:16 +08:00
8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
|
|
import { defineConfig } from 'vitest/config'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
exclude: ['dist/**', 'node_modules/**']
|
||
|
|
}
|
||
|
|
})
|