jonorthwash / ud-annotatrix

GNU General Public License v3.0
61 stars 49 forks source link

Convert all of `server/` to TypeScript #504

Closed keggsmurph21 closed 2 years ago

keggsmurph21 commented 2 years ago

Now everything is written in TypeScript! We can actually start cleaning up the code a little bit now...

The other good news is that notatrix no longer requires a separate "build" step, since the client/ and server/ project can just "consume" it directly.

This PR also includes a bit of reorganization: where before we had

.
├── client
│   └── ...
├── notatrix
│   └── src
│       └── ...
└── servers
    └── ...

we now have

.
└── src
    ├── client
    │   └── ...
    ├── notatrix
    │   └── ...
    └── servers
        └── ...
keggsmurph21 commented 2 years ago

fyi @jonorthwash @zensho