TypeScript comes with 3 JavaScript compiled files in its ‘bin’ folder:
- tsc.js — command-line-run compiler itself;
- typescript.js — ??
- typescriptServices.js — ??
I guess one of those should be ‘TypeScript language service’, but what’s the other one?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
typescript.jsis what’s used by some random internal tools. There’s not any real external-facing purpose for it, though for example you could use it to build something similar to the TypeScript Playground.tsc.jsistypescript.jsplus the command-line front-end.typescriptServices.jsistypescript.jsplus the language service (e.g. for providing Intellisense features)