How can I convert a typescript library into a single javascript file?
For example, oak is a 3rd party library that provides itself via typescript. In deno, you can import oak like this:
import { Application } from "https://deno.land/x/oak/mod.ts";
I would like to convert https://deno.land/x/oak/mod.ts to a standalone javascript file, that could be imported like this:
import { Application } from "./oak.js";
How can I accomplish this conversion?