* clear

* feat: Add everything

* fix: Commenht
This commit is contained in:
Prad Nukala
2025-10-03 14:45:52 -04:00
committed by GitHub
parent 43b4a11c06
commit 13e6c3e84d
1935 changed files with 655061 additions and 40058 deletions
+34
View File
@@ -0,0 +1,34 @@
import { defineConfig } from 'vitest/config';
import path from 'path';
export default defineConfig({
test: {
globals: true,
environment: 'jsdom',
setupFiles: ['./test/setup.ts'],
exclude: [
'**/node_modules/**',
'**/dist/**',
'**/test/plugins.test.ts',
'**/src/client/services/__tests__/ipfs.test.ts',
'**/tests/integration/ipfs-integration.test.ts',
],
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
exclude: [
'node_modules/',
'test/',
'*.config.ts',
'**/*.d.ts',
'**/*.test.ts',
'**/index.ts',
],
},
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
});