24 lines
227 B
Markdown
24 lines
227 B
Markdown
# tsdown-starter
|
|
|
|
A starter for creating a TypeScript package.
|
|
|
|
## Development
|
|
|
|
- Install dependencies:
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
- Run the unit tests:
|
|
|
|
```bash
|
|
npm run test
|
|
```
|
|
|
|
- Build the library:
|
|
|
|
```bash
|
|
npm run build
|
|
```
|