Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

typescript compiler

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)
 
PREVIOUS NEXT
Tagged: #typescript #compiler
ADD COMMENT
Topic
Name
1+6 =