init
All checks were successful
Run tests / build-app (push) Successful in 1m27s

This commit is contained in:
2025-09-03 14:23:38 +02:00
commit 6799fcb507
8 changed files with 147 additions and 0 deletions

23
README.md Normal file
View File

@@ -0,0 +1,23 @@
# tsproj
A little template for TypeScript projects, using [Bun](https://bun.com/).
## Developing
```bash
bun install
```
To run:
```bash
bun run src/index.ts
```
## Testing
Bun includes a test runner out of the box.
```bash
bun test
```