Typescript notes
tsc
:npx tsc path/to/main.ts
(Note the *.ts
extension! 👆)
npx esbuild path/to/main.js --bundle [...]
(Note the *.js
extension! 👆)
Importing works the same way in TS as in modern JS:
// person.ts
export class Person { ... }
// main.ts
import { Person } from "./person"
const p = new Person(...)