setup: initialize project with package.json, tsconfig, tsup, vitest, src skeleton, and test placeholders

This commit is contained in:
2026-05-21 20:46:10 +00:00
parent a61f6aead7
commit 5fbf7a75bc
45 changed files with 3384 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { describe, it, expect } from 'vitest';
describe('components', () => {
it('placeholder', () => {
expect(true).toBe(true);
});
});