mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-10 07:26:23 -04:00
20 lines
312 B
TypeScript
20 lines
312 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
coverage: {
|
|
include: [
|
|
'tree-sitter.js',
|
|
],
|
|
exclude: [
|
|
'test/**',
|
|
'dist/**',
|
|
'lib/**',
|
|
'wasm/**'
|
|
],
|
|
},
|
|
}
|
|
})
|