.ts files don't get vendored #790
Labels
effort: Casual
Simple changes that shouldn't take too much time when you're already familiar with the codebase
Milestone
When a user vendors
mod.js
most of the required files are vendored. But files such assrc/math/types.ts
don't.This is not an issue when you want to run code from Renda in the browser, but types such as
Vec3ParameterSingle
becomeany
.An workaround for users could be to vendor including type imports, but this will also result in a lot of studio types getting vendored.
Ideally the core of Renda shouldn't contain any
.ts
files. The few files that are currently there shouldn't be too difficult to convert to JSDoc.Type files inside the
/studio/
directory can remain there, as they likely won't need to be vendored anyway.The text was updated successfully, but these errors were encountered: