filecoin-pin
Version:
IPFS Pinning Service API implementation that pins to Filecoin's PDP service
19 lines (17 loc) • 349 B
text/typescript
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['src/test/**/*.test.ts'],
coverage: {
reporter: ['text', 'json', 'html'],
exclude: [
'node_modules/',
'dist/',
'src/test/',
'**/*.d.ts'
]
}
}
})