Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: configure tsup for building and watching typescript files (#83)
This pull request includes several changes to the build and watch scripts, as well as the addition of a new configuration file for `tsup`. The most important changes are summarized below: Build and watch script updates: * [`package.json`](diffhunk://#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519L37-R40): Updated the `build` script to use `tsup` instead of `tsc -b src`. * [`package.json`](diffhunk://#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519L37-R40): Updated the `watch` and `watch:start` scripts to use `tsup --watch` instead of `tsc -b src -w` and `tsc-watch -b src`. Dependency updates: * [`package.json`](diffhunk://#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519L115-R115): Replaced the `tsc-watch` dependency with `tsup`. New configuration file: * [`tsup.config.ts`](diffhunk://#diff-8fed899bdbc24789a7bb4973574e624ed6207c6ce572338bc3c3e117672b2a20R1-R17): Added a new configuration file for `tsup` with various settings including entry points, format, and target.
- Loading branch information