99963d002a
* 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
17 lines
356 B
TypeScript
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'],
|
|
},
|
|
})
|