Answers for "npm install typescript language server"

19

install typescript using npm

npm install -g typescript
Posted by: Guest on May-16-2020
4

npm install typescript

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"

Browse Popular Code Answers by Language