Think. Build. Salesforce Solutions.

Salesforce Consulting Services across Salesforce Clouds & Across App Lifecycles

Blog

What is TypeScript?

By |2022-08-22T11:10:17+00:00August 22nd, 2022|

TypeScript is a typed superset of JavaScript compiled to JavaScript i.e, javascript with some extra added features. It cannot run on its own and instead compiles to standard-bases javascript.

Key features of typescript

  1. Statically typed language.
  2. Helps to detect errors including typos at run time.
  3. Offer additional features generics, interfaces, and enums.

Installing and compilation using typescript

  1. The TypeScript compiler is available as an npm package
  2. After installation one can start creating TypeScript files(*.ts).
  3. The compiler compiles the .ts files into standard .js

Typescript with LWC

Lightning Web Components has basic support for TypeScript. Type checking is not possible between js files and Html and even deployed typescript code can not be processed by the lwc platform compiler. To overcome this one can use vs code’s language service and use the lesser strict levels of typescript.

The level of typescript according to its strictness goes on increasing as mentioned below

For Javascript files.

  • Using //@ts-check at beginning of the js file or using checkjs in checkjs in compilerOptions in jsconfig.json file.
  • A type system based only on interference with js code.
  • Using incremental typing with JSDoc https://www.typescriptlang.org/docs/handbook/jsdoc-supporte d-types.html

For Javascript files.

  • Typescript code
  • Typescript with strict enabled

Using typescript in VS code for LWC

  1. Specify the types using JSDoc constructs.
  2. To enable type checking add //ts-check at beginning of the js file.
  3. VS code will show an error as in the below example

What is TypeScript

One can also enable type checking for all js files by adding “checkJs”: true in the jsconfig.json file. Also, make sure you set “ESNext” as a target to prevent errors from showing up on ES5+ features like get/set accessors.
{
“compilerOptions”: {
“checkJs”:true,
“target”: “ESNext”
}
}

Benefits of Typescripts

  1. Compilation − As compared to JavaScript, instead of running code and finding out errors typescript has an error-checking feature provided by TypeScript transpiler which compiles the code and generates errors it also finds some sort of syntax error which helps find errors before the run.
  2. Strong Static Typing- It is a strongly typed language ie. if no type is declared for a variable it is inferred by TLS based on its value.
  3. OOP’s – supports concepts like interfaces, inheritance, etc.

Conclusion –

Usage of typescript with its strict levels usage is increasing within the community to write clean and robust code. Using typescript can avoid future run-time errors and lead to a lesser no of bugs in application development.

Leave A Comment