DEV Community

Cover image for Migrating to TypeScript, Part 2: Trust the compiler!
Resi Respati
Resi Respati

Posted on • Originally published at resir014.xyz on

Migrating to TypeScript, Part 2: Trust the compiler!

Header image by Irina Iriser on Unsplash.

In part 1, we explored how to initialise a project with the TypeScript compiler and the new TypeScript Babel preset. In this part, we’ll go through a quick primer of TypeScript’s features and what they’re for. We’ll also learn how to migrate your existing JavaScript project gradually to TypeScript, using an actual code snippet from an existing project. This will get you to learn how to trust the compiler along the way.


Thinking in TypeScript

The idea of static typing and type safety in TypeScript might feel overwhelming coming from a dynamic typing background, but it doesn’t have to be that way.

The main thing people often tell you about TypeScript is that it’s “just JavaScript with types”. Since JavaScript is dynamically typed, a lot of features like type coercion is often abused to make use of the dynamic nature of the language. So the idea of type-safety might never come across your average JS developer. This makes the idea of static typing and type safety feel overwhelming, but it doesn’t have to be that way.

The trick is to rewire our thinking as we go along. And to do that we need to have a mindset. The primary mindset, as defined in Basarat’s book, is Your JavaScript is already TypeScript.

But why is TypeScript important?

A more appropriate question to ask would be “why is static typing in JavaScript important?” Sooner or later, you’re going to start writing medium to large-scale apps with JavaScript. When your codebase gets larger, detecting bugs will become a more tedious task. Especially when it’s one of those pesky Cant read property 'x' of undefined errors. JavaScript is a dynamically-typed language by nature and it has a lot of its quirks, like null and undefined types, type coercion, and the like. Sooner or later, these tiny quirks will work against you down the road.

Static typing ensures the correctness of your code in order to help detect bugs early. Static type checkers like TypeScript and Flow help reduce the amount of bugs in your code by detecting type errors during compile time. In general, using static typing in your JavaScript code can help prevent about 15% of the bugs that end up in committed code.

TypeScript also provides various productivity enhancements like the ones listed below. You can see these features on editors with first-class TypeScript support like Visual Studio Code.

  • Advanced statement completion through IntelliSense
  • Smarter code refactoring
  • Ability to infer types from usage
  • Ability to type-check JavaScript files (and infer types from JSDoc annotations)

Strict mode

TypeScript’s “strict mode” is where the meat are of the whole TypeScript ecosystem. The --strict compiler flag, introduced in TypeScript 2.3, activates TypeScript’s strict mode. This will set all strict typechecking options to true by default, which includes:

  • --noImplicitAny - Raise error on expressions and declarations with an implied ‘any’ type.
  • --noImplicitThis - Raise error on ‘this’ expressions with an implied ‘any’ type.
  • --alwaysStrict - Parse in strict mode and emit “use strict” for each source file.
  • --strictBindCallApply - Enable strict ‘bind’, ‘call’, and ‘apply’ methods on functions.
  • --strictNullChecks - Enable strict null checks.
  • --strictFunctionTypes - Enable strict checking of function types.
  • --strictPropertyInitialization - Enable strict checking of property initialization in classes.

When strict is set to true in your tsconfig.json, all of the options above are set to true. If some of these options give you problems, you can override strict mode by overriding the options above one by one. For example:

{
  "compilerOptions": {
    "strict": true,
    "strictFunctionTypes": false,
    "strictPropertyInitialization": false
  }
}
Enter fullscreen mode Exit fullscreen mode

This will enable all strict type-checking options except --strictFunctionTypes and --strictPropertyInitialization. Fiddle around with these options when they give you trouble. Once you get more comfortable with them, slowly re-enable them one by one.

Linting

Linting and static analysis tools are one of the many essential tools for any language. There are currently two popular linting solutions for TypeScript projects.

  • TSLint used to be the de-facto tool for linting TypeScript code. It has served the TS community well throughout the years, but it has fallen out of favour as of late. Development seems to have stagnated lately, with the authors even announcing its deprecation recently in favour of ESLint. Even Microsoft themselves have noticed some architectural and performance issues in TSLint as of late, and recommended against it. Which brings me to the next option.
  • ESLint - yeah, I know. But hear me out for a second. Despite being a tool solely for linting JavaScript for quite some time, ESLint has been adding more and more features to better support TS. It has announced plans to better support TS through the new typescript-eslint project. It contains a TypeScript parser for ESLint, and even a plugin which ports many TSLint rules into ESLint.

Therefore, ESLint might be the better choice going forward. To learn more about using ESLint for TypeScript, read through the docs of the typescript-eslint project.

A quick primer to TypeScript types

The following section contains some quick references on how TypeScript type system works. For a more detailed guide, read this 2ality blog post on TypeScript’s type system.

Applying types

Once you’ve renamed your .js files to .ts (or .tsx), you can enter type annotations. Type annotations are written using the : TypeName syntax.

let assignedNumber: number | undefined = undefined

assignedNumber = 0

function greetPerson(name: string) {
  return `Hello, ${name}!`
}
Enter fullscreen mode Exit fullscreen mode

You can also define return types for a function.

function isFinishedGreeting(name: string): boolean {
  return getPerson(name).isGreeted()
}
Enter fullscreen mode Exit fullscreen mode

Primitive & unit types

TypeScript has a few supported primitive types. These are the most basic data types available within the JavaScript language, and to an extent TypeScript as well.

// Boolean
let isDone: boolean = false

// Number
let decimal: number = 6
let hex: number = 0xf00d
let binary: number = 0b1010
let octal: number = 0o744

// string
let standardString: string = 'Hello, world!'
let templateString: string = `Your number is ${decimal}`
Enter fullscreen mode Exit fullscreen mode

These primitive types can also be turned into unit types , where values can be their own types.

// This variable can only have one possible value: 42.
let fortyTwo: 42 = 42

// A unit type can also be combined with other types.
// The `|` turns this into a union type. We'll go through it in the next section.
let maybeFalsey: 0 | false | null | undefined
Enter fullscreen mode Exit fullscreen mode

Intersection & union types

You can combine two or more types together using intersection and union types.

Union types can be used for types/variables that have have one of several types. This tells TypeScript that “variable/type X can be of either type A or type B.”

function formatCommandline(command: string[] | string) {
  var line = ''
  if (typeof command === 'string') {
    line = command.trim()
  } else {
    line = command.join(' ').trim()
  }

  return line
}
Enter fullscreen mode Exit fullscreen mode

Intersection types can be used to combine multiple types into one. This tells TypeScript that “variable/type X contains type A and B.”

type A = { a: string }
type B = { b: string }

type Combined = A & B // { a: string, b: string }

// Example usage of intersection types.
// Here we take two objects, then combining them into one whilst using intersection types
// to combine the types of both objects into one.
function extend<T, U>(first: T, second: U): T & U {
  // use TypeScript type casting to create an object with the combined type.
  let result = {} as T & U

  // combine the object.
  for (let id in first) {
    result[id] = first[id]
  }
  for (let id in second) {
    if (!result.hasOwnProperty(id)) {
      result[id] = second[id]
    }
  }
  return result
}

const x = extend({ a: 'hello' }, { b: 42 })

// `x` now has both `a` and `b` property
console.log(x.a)
console.log(x.b)
Enter fullscreen mode Exit fullscreen mode

types and interfaces

For defining types of objects with a complex structure, you can use either the type or the interface syntax. Both work essentially the same, with interface being well-suited for object-oriented patterns with classes.

// Types
type ComponentProps = {
  title?: string
}

function ReactComponent(props: ComponentProps) {
  return <div>{props.title}</div>
}

// Interfaces
interface TaskImpl {
  start(): void
  end(): void
}

class CreepTask implements TaskImpl {
  state: number = 0

  start() {
    this.state = 1
  }

  end() {
    this.state = 0
  }
}
Enter fullscreen mode Exit fullscreen mode

Generics

Generics provide meaningful type constraints between members.

In the example below, we define an Action type where the type property can be anything that we pass into the generic.

interface Action<T = any> {
  type: T
}
Enter fullscreen mode Exit fullscreen mode

The type that we defined inside the generic will be passed down to the type property. In the example below, type will have a unit type of 'FETCH_USERS'.

// You can also use `Action<string>` for any string value.
interface FetchUsersAction extends Action<'FETCH_USERS'> {
  payload: UserInfo[]
}

type AddUserAction = Action<'ADD_USER'>
const action: AddUserAction = { type: 'ADD_USER' }
Enter fullscreen mode Exit fullscreen mode

Declaration files

You can let TypeScript know that you’re trying to describe a some code that exists somewhere in your library (a module, global variables/interfaces, or runtime environments like Node). To do this, we use the declare keyword.

Declaration files always have a .d.ts file extension.

// For example, to annotate Node's `require()` call
declare const require: (module: string) => any

// Now you can use `require()` everywhere in your code!
require('whatwg-fetch')
Enter fullscreen mode Exit fullscreen mode

You can include this anywhere in your code, but normally they’re included in a declaration file. Declaration files have a .d.ts extension, and are used to declare the types of your own code, or code from other libraries. Normally, projects will include their declaration files in something like a declarations.d.ts file and will not be emitted in your compiled code.

You can also constrain declarations to a certain module in the declare module syntax. For example, here’s a module that has a default export called doSomething().

declare module 'module-name' {
  // You can also export types inside modules so library consumers can use them.
  export type ExportedType = { a: string; b: string }

  const doSomething: (param: ExportedType) => any
  export default doSomething
}
Enter fullscreen mode Exit fullscreen mode

Let’s migrate!

Alright, enough with the lectures, let’s get down and dirty! We’re going to take a look at a real-life project, take a few modules, and convert them to TypeScript.

To do this, I’ve taken upon the help of my Thai friend named Thai (yeah, I know). He has a massive, web-based rhythm game project named Bemuse, and he’s been planning to migrate it to TypeScript. So let’s look at some parts of the code and try migrating them to TS where we can.

From .js to .ts

Consider the following module:

1-non-js-file

Here we have your typical JavaScript module. A simple module with a function type-annotated with JSDoc, and two other non-annotated functions. And we’re going to turn this bad boy into TypeScript.

To make a file in your project a TypeScript file, we just need to rename it from .js to .ts. Easy, right?

2-rename-to-ts

Oh no! We’re starting to see some red! What did we do wrong?

This is fine, actually! We’ve just enabled our TypeScript type-checking by doing this, so what’s left for us is to add types as we see fit.

The first thing to do is to add parameter types to these functions. As a quick way to get started, TypeScript allows us to infer types from usage and include them in our code. If you use Visual Studio Code, click on the lightbulb that appears when your cursor is in the function name, and click on “Infer parameter types from usage”.

infer-types-from-usage

If your functions/variables are documented using JSDoc, this gets much easier as TS can also infer parameter types from JSDoc annotations.

infer-types-from-jsdoc

Note that TypeScript generated a partial object schema for the function at the bottom of this file based on usage. We can use it as a starting point to improve its definition using interfaces and types. For example, let’s take a look at this line.

/**
 * Returns the accuracy number for a play record.
 */
export function formattedAccuracyForRecord(record: { count: any; total: any }) {
  return formatAccuracy(calculateAccuracy(record.count, record.total))
}
Enter fullscreen mode Exit fullscreen mode

We already know that we have properties count and total in this parameter. To make this code cleaner, we can put this declaration into a separate type/interface. You can include this within the same file, or separately on a file reserved for common types/interfaces, e.g. types.ts

export type RecordItem = {
  count: any
  total: any
  [key: string]: any
}

import { RecordItem } from 'path/to/types'

/**
 * Returns the accuracy number for a play record.
 */
export function formattedAccuracyForRecord(record: RecordItem) {
  return formatAccuracy(calculateAccuracy(record.count, record.total))
}
Enter fullscreen mode Exit fullscreen mode

Dealing with external modules

With that out of the way, now we’re going to look at how to migrate files with external modules. For a quick example, we have the following module:

4-raw-ts-with-modules

We’ve just renamed this raw JS file into .ts and we’re seeing a few errors. Let’s take a look at them.

On the first line, we can see that TypeScript doesn’t understand how to deal with the lodash module we imported. If we hovered over the red squiggly line, we can see the following:

Could not find a declaration file for module 'lodash-es'. '/Users/resir014/etc/repos/bemusic/bemuse/node_modules/lodash/lodash.js' implicitly has an 'any' type.
  Try `npm install @types/lodash` if it exists or add a new declaration (.d.ts) file containing `declare module 'lodash';`
Enter fullscreen mode Exit fullscreen mode

As the error message says, all we need to do to fix this error is to install the type declaration for lodash.

$ npm install --save-dev @types/lodash
Enter fullscreen mode Exit fullscreen mode

This declaration file comes from DefinitelyTyped, an extensive library community-maintained declaration files for the Node runtime, as well as many popular libraries. All of them are autogenerated and published in the @types/ scope on npm.

Some libraries include their own declaration files. If a project is compiled from TypeScript, the declarations will be automatically generated. You can also create declaration files manually for your own library, even when your project is not built using TypeScript. When generating declaration files inside a module, be sure to include them inside a types, or typings key in the package.json. This will make sure the TypeScript compiler knows where to look for the declaration file for said module.

{
  "main": "./lib/index.js",
  "types": "./types/index.d.ts"
}
Enter fullscreen mode Exit fullscreen mode

OK, so now we have the type declarations installed, how does our TS file look like?

5-installed-declarations

Whoa, what’s this? I thought only one of those errors would be gone? What’s happening here?

Another power of TypeScript is that it’s able to infer types based on how data flows throughout your module. This is called control-flow based type analysis. This means that TypeScript will know that the chart inside the .orderBy() call comes from what was passed from the previous calls. So the only type error that we have to fix now would be the function parameter.

But what about libraries without type declaration? On the first part of my post, I’ve come across this comment.

I was trying to use Typescript with react and Evergreen-Ui react library. But Evergreen-ui doesn't have typescript support. It's asking for declaration file which I couldn't understand. How to proceed with it?

Some packages include their own typings within the project, so oftentimes it will get picked up by the TypeScript compiler. But in case we have neither built-in typings nor @types package for the library, we can create a shim for these libraries using ambient declarations (*.d.ts files).

First, create a folder in your source directory to hold ambient declarations. Call it types/ or something so we can easily find them. Next, create a file to hold our own custom declarations for said library. Usually we use the library name, e.g. evergreen-ui.d.ts.

Now inside the .d.ts file we just created, put the following:

declare module 'evergreen-ui'
Enter fullscreen mode Exit fullscreen mode

This will shim the evergreen-ui module so we can import it safely without the “Cannot find module” errors.

Note that this doesn’t give you the autocompletion support, so you will have to declare the API for said library manually. This is optional of course, but very useful if you want better autocompletion.

For example, if we were to use Evergreen UI’s Button component:

// Import React's base types for us to use.
import * as React from 'react'

declare module 'evergreen-ui' {
  export interface ButtonProps extends DimensionProps, SpacingProps, PositionProps, LayoutProps {
    // The above extended props props are examples for extending common props and are not included in this example for brevity.

    intent: 'none' | 'success' | 'warning' | 'danger'
    appearance: 'default' | 'minimal' | 'primary'
    isLoading?: boolean

    // Again, skipping the rest of the props for brevity, but you get the idea.
  }

  export class Button extends React.PureComponent<ButtonProps> {}
}
Enter fullscreen mode Exit fullscreen mode

And that’s it for part 2! The full guide concludes here, but if there are any more questions after this post was published, I’ll try to answer some of them in part 3.

As a reminder, the #typescript channel on the Reactiflux Discord server has a bunch of lovely people who know TypeScript inside and out. Feel free to hop in and ask any question about TypeScript!

Top comments (2)

Collapse
 
karataev profile image
Eugene Karataev

Wow, I didn't know about "Infer parameter types from usage" feature, thanks for sharing!

Collapse
 
abhijeetps profile image
Abhijeet Singh

Liked this article.
Thank you for sharing. 😄