tree-sitter/lib/binding_web/vitest.config.ts
Amaan Qureshi a40265cbeb refactor(web): rename tree-sitter.js to web-tree-sitter.js
This is not breaking for consumers of the web bindings, nor the
playground as both filenames will be kept in the .github.io repo
2025-02-11 22:56:50 -05:00

19 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/**'
],
},
}
})