Currently the front-end is a bunch of JavaScript files typed with JSDoc which has limitations such as :: 1. Doesn't allow for new features to be added easily https://github.com/jsdoc/jsdoc/pull/2139 2. Doesn't support negative numbers https://github.com/jsdoc/jsdoc/issues/2131 and a fix has been open for a while now https://github.com/hegemonic/catharsis/pull/76 If we switch the frontend over to Typescript, it will cost us a build step but we gain :: 1. shared types between test and prod 2. being able to import dependency types like ApexCharts 3. having a build system handle compression and optimizations, so maintainers can freely write code in inefficient but more readable ways 4. moving the front end 3rd party dependices out of the rust build step and into the typescript build step
Currently the front-end is a bunch of JavaScript files typed with JSDoc which has limitations such as ::
@legacytag jsdoc/jsdoc#2139If we switch the frontend over to Typescript, it will cost us a build step but we gain ::