.ts is the standard TypeScript files. The content then will be compiled to JavaScript.

*.d.ts is the type definition files that allow to use existing JavaScript code in TypeScript.

Let”s assume, we have a simple JavaScript function that calculates the sum of two numbers:

// math.js
const sum = (a, b) => a + b;

export { sum };

We can not use it yet, in a .ts file, because TypeScript doesn’t have any information about the function including the name, the type of parameters. In order to use the function in a TypeScript file, we provide its definition in a d.ts file:

// math.d.ts
declare function sum(a: number, b: number): number;

From now on, we can use the function in TypeScript without any compile errors.

The d.ts file doesn’t contain any implementation, and isn’t compiled to JavaScript at all.

PS: TypeScript provides an option named allowJs which allows to use plain JavaScript code in TypeScript.

// tsconfig.json
{
    "compilerOptions": {
        "allowJs": true,
        ...
    }
}

It’s very useful when we want to migrate the existing code base from plain JavaScript to TypeScript. So we can convert each JavaScript file to TypeScript one by one without having to convert entire code completely.

By Shabazz

Software Engineer, MCSD, Web developer & Angular specialist

Leave a Reply

Your email address will not be published. Required fields are marked *