Answers for "typescript transpile and run"

4

typescript transpiler

npm install -g typescript

tsc --init # creates a tsconfig.json file

tsc # transpile every file in the current directory
tsc index.ts # transpile a specific file
tsc --watch # transpile on change in current directory (watch changes)
Posted by: Guest on December-31-2021

Code answers related to "typescript transpile and run"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language