20 lines
262 B
Markdown
20 lines
262 B
Markdown
## How to start
|
|
|
|
Use Bun to manage packages.
|
|
|
|
```
|
|
bun i
|
|
```
|
|
|
|
## Useful commands
|
|
|
|
run checks with your favorite package manager: npm, yarn, pnpm or bun
|
|
|
|
```
|
|
bun run typecheck
|
|
```
|
|
fix styles, imports, formatting and autofixable linting errors:
|
|
```
|
|
bun run fix
|
|
```
|