Notarize AT Protocol records on Ethereum using EAS (experiment)
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at dff675d2e053a7e5ce41f6fd0a080fdaa4bc96dd 13 lines 282 B view raw
1import { defineConfig } from 'vitest/config'; 2 3export default defineConfig({ 4 test: { 5 globals: true, 6 environment: 'node', 7 coverage: { 8 provider: 'v8', 9 reporter: ['text', 'json', 'html'], 10 exclude: ['dist/**', 'tests/**', '*.config.ts'], 11 }, 12 }, 13});