What Is the tsconfig.json Configuration File?
We continue our series on TypeScript development by looking a particular configuration file that is quite handy in TypeScript-based web applications.
Join the DZone community and get the full member experience.
Join For FreeThe tsconfig.json
file allows you to specify the root level files and the compiler options that requires to compile a TypeScript project. The presence of this file in a directory specifies that the said directory is the TypeScript project root.
In this chapter of the TypeScript Tutorial series, we will learn about tsconfig.json
, it's various properties, and how to extend it.
In the previous chapters of this TypeScript Tutorial series, we learned how to install Node.js and TypeScript, followed by building your first Hello World application in TypeScript using Visual Studio Code. Today in this article, let's go one step ahead to learn about tsconfig.json
file.
The "compilerOptions" Property
The "compilerOptions"
property allows you to specify additional options to the TypeScript compiler. Here's a list of few optional settings part of the compilerOptions
property that you may need most of the time: listFiles
, module
, outDir
, outFile
, rootDir
, sourceRoot
, allowUnreachableCode
, allowJs
, noImplicitUseStrict
, strictNullChecks
and more.
Here's a sample JSON file describing how you can define a tsconfig.json
file containing different parameters of the compilerOptions
property:
{
"compilerOptions": {
"module": "system",
"noImplicitAny": true,
"removeComments": true,
"allowUnreachableCode": false,
"strictNullChecks": true,
"outFile": "../JS/TypeScript/HelloWorld.js",
"sourceMap": true
}
}
The "compileOnSave" Property
The "compileOnSave"
property can be used to direct the IDE to automatically compile the included TypeScript files and generate the output. Here's how you can define the compileOnSave
property inside a tsconfig.json
file, along with the other properties:
{
"compileOnSave": true,
"compilerOptions": {
"module": "system",
"noImplicitAny": true,
"removeComments": true,
"allowUnreachableCode": false,
"strictNullChecks": true,
"outFile": "../JS/TypeScript/HelloWorld.js",
"sourceMap": true
}
}
The "files", "include" and "exclude" Properties
- The
"files"
property allows you to specify a list of TypeScript files that will be included by the compiler. The URL of the files can be relative or absolute. - The
"include"
property allows you to include a list of TypeScript files using the glob wildcards pattern. - The
"exclude"
property allows you to exclude a list of TypeScript files using the glob wildcards pattern. - When you don't specify both the
files
andinclude
properties, the compiler includes all TypeScript files (*.ts
,*.d.ts
,*.tsx
) by default. - When both the
files
andinclude
properties are specified, the compiler includes the union of the specified files. - When you want to filter out some files included using the
include
property, you can specify theexclude
property. - If you specify any files using the
files
property, the uses of theexclude
property will not have any impact on those listed files. In short, the files included using thefiles
property will always be included regardless of the files listed under theexclude
property.
Here's the code snippet describing how you can define the files
, include
, and exclude
properties inside a tsconfig.json
file, along with the other properties:
{
"compileOnSave": true,
"compilerOptions": {
"module": "system",
"noImplicitAny": true,
"removeComments": true,
"allowUnreachableCode": false,
"strictNullChecks": true,
"outFile": "../JS/TypeScript/HelloWorld.js",
"sourceMap": true
},
"files": [
"program.ts",
"sys.ts"
],
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"src/**/*.spec.ts"
]
}
Extending the "tsconfig.json" File
You can also extend a TypeScript configuration file from a different base configuration. You can do so by using the extends
property. It accepts a string value containing a path to another configuration file to inherit from. The configuration from the base file is loaded first, then overridden by those in the inheriting config file. If there is a circular reference, the TypeScript compiler will return an error.
// tsconfig-base.json
{
"compilerOptions": {
"module": "system",
"noImplicitAny": true,
"removeComments": true,
"allowUnreachableCode": false,
"strictNullChecks": true
}
}
// tsconfig.json
{
"extends": "./tsconfig-base",
"compilerOptions": {
"outFile": "../JS/TypeScript/HelloWorld.js",
"sourceMap": true
}
}
Published at DZone with permission of Kunal Chowdhury, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments