UNPKG

nostr-geotags

Version:

Give an object of geodata, returns standardized nostr geotags

22 lines (20 loc) 437 B
// vitest.config.ts import { defineConfig } from 'vite'; import tsconfigPaths from 'vite-tsconfig-paths'; export default defineConfig({ plugins: [tsconfigPaths()], test: { globals: true, include: ['src/**/*.test.ts'], exclude: [ 'node_modules', 'dist', 'docs' ], environment: 'node', coverage: { provider: 'v8', exclude: ['node_modules', 'dist', 'docs/**/*'], }, }, });