Files
atproto/vitest.config.ts
Matthieu Sieben 99963d002a lex SDK improvements (#4571)
* Improve code coverage of `@atproto/lex-data` tests

* Improve typing of `@atproto/syntax` type assertion utilities

* Improve performance of `@atproto/lex-schema ` string format checking

* Remove `assertX` string format assertion utilities

* tidy

* tidy

* Rename `isLanguageString` to `validateLanguage`

* add string format utils

* tidy

* Refactor uri validation to use `@atproto/syntax`

* More language validation to @atproto/syntax
2026-01-21 16:15:47 +01:00

17 lines
356 B
TypeScript

import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
coverage: {
provider: 'v8', // or 'istanbul'
exclude: [
'**/dist/**',
'**/node_modules/**',
'**/src/lexicons/**',
'**/tests/**',
],
},
projects: ['packages/lex/*', 'packages/syntax', 'packages/tap'],
},
})