HomeToolsAbout a20k

Compiling

Compiling using tsc

Compile typescript locally on a project using Typescript Compiler in CLI

  • Running tsc locally will compile the closest project defined by a tsconfig.json
# Compile whole project tsc # Specific file tsc index.ts # all .ts files in path tsc src/*.ts

IDL

Interface Definition Language

© VincentVanKoh