discord.js/vitest.config.ts
Jiralite a1605b3a5e
build: Update vite and other related dependencies (#9772)
* build: update vite and other related dependencies

* chore: use `"errors-only"`
2023-08-13 21:36:23 +02:00

25 lines
666 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
exclude: ['**/node_modules', '**/dist', '.idea', '.git', '.cache'],
passWithNoTests: true,
coverage: {
enabled: true,
all: true,
reporter: ['text', 'lcov', 'cobertura'],
provider: 'v8',
include: ['src'],
exclude: [
// All ts files that only contain types, due to ALL
'**/*.{interface,type,d}.ts',
'**/{interfaces,types}/*.ts',
// All index files that *should* only contain exports from other files
'**/index.{js,ts}',
// All exports files that make subpackages available as submodules
'**/exports/*.{js,ts}',
],
},
},
});