@btc-vision/transaction
Version:
OPNet transaction library allows you to create and sign transactions for the OPNet network.
22 lines (20 loc) • 529 B
text/typescript
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['test/*.test.ts', 'test/*.spec.ts'],
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
exclude: [
'node_modules/',
'build/',
'test/',
'**/*.d.ts',
'**/*.config.*',
'**/mockData',
],
},
},
});