Phase 1+2: Nx workspace with apps, libs, and module boundaries

This commit is contained in:
Maurycy
2026-05-06 21:15:49 +01:00
commit b196624929
93 changed files with 19667 additions and 0 deletions

View File

@@ -0,0 +1 @@
export * from './lib/encounter-library';

View File

@@ -0,0 +1,7 @@
import { encounterLibrary } from './encounter-library';
describe('encounterLibrary', () => {
it('should work', () => {
expect(encounterLibrary()).toEqual('encounter-library');
});
});

View File

@@ -0,0 +1,3 @@
export function encounterLibrary(): string {
return 'encounter-library';
}