Does Glitch Support Typescript?

So Does Glitch Support With Typescript Libraries?

Yes, Glitch does support TypeScript but I do not know how to use it in your apps.

yes first you need to have a typescript dependencies. Add it in package.json .
then you would want an install script:

"scripts": {
  "install":"tsc"
}

Be sure to use the g flag to install globally in the container.

it is not required