← Back tothis vs that

*.d.ts vs *.ts

Written byPhuoc Nguyen
Created
20 Aug, 2020
Category
TypeScript

Difference

`.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.
For example, we have a simple JavaScript function that calculates the sum of two numbers:
js
// math.js
const sum = (a, b) => a + b;

export { sum };
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:
js
// 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.

Good to know

TypeScript provides an option named `allowJs` which allows to use plain JavaScript code in TypeScript.
json
// 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.
See the migrating from JavaScript guide for more information.
If you found this post helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks 😍. Your support would mean a lot to me!

Questions? 🙋

Do you have any questions about front-end development? If so, feel free to create a new issue on GitHub using the button below. I'm happy to help with any topic you'd like to learn more about, even beyond what's covered in this post.
While I have a long list of upcoming topics, I'm always eager to prioritize your questions and ideas for future content. Let's learn and grow together! Sharing knowledge is the best way to elevate ourselves 🥷.
Ask me questions

Recent posts ⚡

Newsletter 🔔

If you're into front-end technologies and you want to see more of the content I'm creating, then you might want to consider subscribing to my newsletter.
By subscribing, you'll be the first to know about new articles, products, and exclusive promotions.
Don't worry, I won't spam you. And if you ever change your mind, you can unsubscribe at any time.
Phước Nguyễn