Announcing: A Free Book, A New Course, A Huge Price Cut...
It's a massive ship day. We're launching a free TypeScript book, new course, giveaway, price cut, and sale.
Need to manually type a JSON file?
I learned today that you can add a .d.json.ts
file to manually assign a type to a JSON import.
For example, if you have a data.json
file, you can create a data.d.json.ts
file and define the type inside:
// data.d.json.ts
declare const data: Record<string, string>;
export default data;
You can change the Record<string, string>
type to match the desired shape.
To make TypeScript recognize .d.json.ts
files, you need to add a setting in your tsconfig.json
:
{
"compilerOptions": {
"allowArbitraryExtensions": true
}
}
This setting lets TypeScript use .d.json.ts
files.
This technique can be particularly useful when working with large .json
files used for test fixtures. If TypeScript infers the type of all the data in the file, it can significantly slow down the TypeScript transpilation process - and your IDE.
By assigning a broader type like Record<string, string>
, TypeScript will use the specified type instead. This optimization can greatly improve the performance of your TypeScript transpilation.
Share this article with your friends
It's a massive ship day. We're launching a free TypeScript book, new course, giveaway, price cut, and sale.
Learn why the order you specify object properties in TypeScript matters and how it can affect type inference in your functions.
Learn how to use corepack
to configure package managers in Node.js projects, ensuring you always use the correct one.
Learn how to strongly type process.env in TypeScript by either augmenting global type or validating it at runtime with t3-env.
Discover when it's appropriate to use TypeScript's any
type despite its risks. Learn about legitimate cases where any
is necessary.
Learn why TypeScript's types don't exist at runtime. Discover how TypeScript compiles down to JavaScript and how it differs from other strongly-typed languages.