Fix build errors: exclude test files, fix exports, update currency test types

This commit is contained in:
defiQUG
2026-01-23 16:40:29 -08:00
parent 13ee01e749
commit 696b9059f6
39 changed files with 650 additions and 9 deletions

View File

@@ -1,8 +1,9 @@
import { describe, it, expect, beforeEach } from 'vitest';
import { SimpleCurrencyConverter, getDefaultConverter } from '../currency';
import { getDefaultConverter } from '../currency';
import type { CurrencyConverter } from '../currency';
describe('Currency Conversion', () => {
let converter: SimpleCurrencyConverter;
let converter: CurrencyConverter;
beforeEach(() => {
converter = getDefaultConverter();

View File

@@ -11,3 +11,7 @@ export * from './input-validation';
export * from './eo-uplift';
export * from './institution-config';
export * from './errors';
export * from './version';
export * from './logging';
export * from './config';
export * from './fx-rates';