mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-10 07:36:22 -04:00
This is not breaking for consumers of the web bindings, nor the playground as both filenames will be kept in the .github.io repo
20 lines
316 B
TypeScript
20 lines
316 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
coverage: {
|
|
include: [
|
|
'web-tree-sitter.js',
|
|
],
|
|
exclude: [
|
|
'test/**',
|
|
'dist/**',
|
|
'lib/**',
|
|
'wasm/**'
|
|
],
|
|
},
|
|
}
|
|
})
|