tsconfig.json scares everyone. It's a huge file with a TON of potential options.
But really, there are only a few configuration options you need to care about. Let's figure them out, and cheatsheet them.
Want just the code? Here you go:
{
"compilerOptions": {
/* Base Options: */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "es2022",
"verbatimModuleSyntax": true,
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
/* Strictness */
"strict": true,
"noUncheckedIndexedAccess": true,
/* If transpiling with TypeScript: */
"moduleResolution": "NodeNext",
"module": "NodeNext",
"outDir": "dist",
"sourceMap": true,
/* If NOT transpiling with TypeScript: */
"moduleResolution": "Bundler",
"module": "ESNext",
"noEmit": true,
/* If your code runs in the DOM: */
"lib": ["es2022", "dom", "dom.iterable"],
/* If your code doesn't run in the DOM: */
"lib": ["es2022"],
/* If you're building for a library: */
"declaration": true,
/* If you're building for a library in a monorepo: */
"composite": true,
"declarationMap": true
}
}Here are the base options I recommend for all projects.
{
"compilerOptions": {
"esModuleInterop": true,
"skipLibCheck": true,
"target": "es2022",
"verbatimModuleSyntax": true,
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force"
}
}- esModuleInterop : Helps mend a few of the fences between CommonJS and ES Modules.
- skipLibCheck : Skips checking the types of
.d.tsfiles. This is important for performance, because otherwise allnode_moduleswill be checked. - target : The version of JavaScript you're targeting. I recommend
es2022overesnextfor stability. - verbatimModuleSyntax : Gives you strict errors for
importandexportsyntax in.ctsand.mtsfiles. - allowJs and resolveJsonModule : Allows you to import
.jsand.jsonfiles. Always useful. - moduleDetection : This option forces TypeScript to consider all files as modules. This helps to avoid 'cannot redeclare block-scoped variable' errors.
Here are the strictness options I recommend for all projects.
{
"compilerOptions": {
"strict": true,
"noUncheckedIndexedAccess": true
}
}- strict: Enables all strict type checking options. Indispensable.
- noUncheckedIndexedAccess: Prevents you from accessing an array or object without first checking if it's defined. This is a great way to prevent runtime errors, and should really be included in
strict.
Many folks recommended the strictness options in tsconfig/bases, a wonderful repo which catalogs TSConfig options. These options include lots of rules which I consider too 'noisy', like noImplicitReturns, noUnusedLocals, noUnusedParameters, and noFallthroughCasesInSwitch. I recommend you add these rules to your tsconfig.json only if you want them.
If you're transpiling your code (creating JavaScript files) with tsc, you'll want these options.
{
"compilerOptions": {
"moduleResolution": "NodeNext",
"module": "NodeNext",
"outDir": "dist"
}
}- moduleResolution: Tells TypeScript how to resolve modules.
NodeNextis the best option for if the code you're writing is meant to be run in Node. - module: Tells TypeScript what module syntax to use.
NodeNextis the best option for Node. - outDir: Tells TypeScript where to put the compiled JavaScript files.
distis my preferred convention, but it's up to you.
If you're not transpiling your code with tsc, i.e. using TypeScript as more of a linter, you'll want these options.
{
"compilerOptions": {
"moduleResolution": "Bundler",
"module": "ESNext",
"noEmit": true
}
}- moduleResolution:
Bundleris the best option for if the code you're writing is meant to be bundled with a tool like Webpack, Rollup, Babel, SWC, or ESBuild. - module:
ESNextis the best option because it most closely mimics how bundlers treat modules.
If your code runs in the DOM, you'll want these options.
{
"compilerOptions": {
"lib": ["es2022", "dom", "dom.iterable"]
}
}- lib: Tells TypeScript what built-in types to include.
es2022is the best option for stability.domanddom.iterablegive you types forwindow,documentetc.
If your code doesn't run in the DOM, you'll want lib: ["es2022"].
{
"compilerOptions": {
"lib": ["es2022"]
}
}These are the same as above, but without the dom and dom.iterable typings.
If you're building for a library, you'll want declaration: true.
{
"compilerOptions": {
"declaration": true
}
}- declaration: Tells TypeScript to emit
.d.tsfiles. This is needed so that libraries can get autocomplete on the.jsfiles you're creating.
If you're building for a library in a monorepo, you'll also want these options.
{
"compilerOptions": {
"declaration": true,
"composite": true,
"sourceMap": true,
"declarationMap": true
}
}- composite : Tells TypeScript to emit
.tsbuildinfofiles. This tells TypeScript that your project is part of a monorepo, and also helps it to cache builds to run faster. - sourceMap and declarationMap: Tells TypeScript to emit source maps and declaration maps. These are needed so that when consumers of your libraries are debugging, they can jump to the original source code using go-to-definition.
Original Source https://www.totaltypescript.com/tsconfig-cheat-sheet