Basic

It is extremely easy to get started with tsconfig.json as the basic file you need is:

  1. {}

i.e. an empty JSON file at the root of your project. This way TypeScript will include all the .ts files in this directory (and sub directories) as a part of the compilation context. It will also select a few sane default compiler options.

compilerOptions

You can customize the compiler options using compilerOptions:

  1. {
  2. "compilerOptions": {
  3. /* Basic Options */
  4. "target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */
  5. "module": "commonjs", /* Specify module code generation: 'commonjs', 'amd', 'system', 'umd' or 'es2015'. */
  6. "lib": [], /* Specify library files to be included in the compilation: */
  7. "allowJs": true, /* Allow javascript files to be compiled. */
  8. "checkJs": true, /* Report errors in .js files. */
  9. "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
  10. "declaration": true, /* Generates corresponding '.d.ts' file. */
  11. "sourceMap": true, /* Generates corresponding '.map' file. */
  12. "outFile": "./", /* Concatenate and emit output to single file. */
  13. "outDir": "./", /* Redirect output structure to the directory. */
  14. "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
  15. "removeComments": true, /* Do not emit comments to output. */
  16. "noEmit": true, /* Do not emit outputs. */
  17. "importHelpers": true, /* Import emit helpers from 'tslib'. */
  18. "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
  19. "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
  20. /* Strict Type-Checking Options */
  21. "strict": true, /* Enable all strict type-checking options. */
  22. "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
  23. "strictNullChecks": true, /* Enable strict null checks. */
  24. "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
  25. "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
  26. /* Additional Checks */
  27. "noUnusedLocals": true, /* Report errors on unused locals. */
  28. "noUnusedParameters": true, /* Report errors on unused parameters. */
  29. "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
  30. "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
  31. /* Module Resolution Options */
  32. "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
  33. "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
  34. "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
  35. "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
  36. "typeRoots": [], /* List of folders to include type definitions from. */
  37. "types": [], /* Type declaration files to be included in compilation. */
  38. "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
  39. /* Source Map Options */
  40. "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
  41. "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */
  42. "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
  43. "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
  44. /* Experimental Options */
  45. "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
  46. "emitDecoratorMetadata": true /* Enables experimental support for emitting type metadata for decorators. */
  47. }
  48. }

These (and more) compiler options will be discussed later.

TypeScript compiler

Good IDEs come with built in support for on the fly ts to js compilation. If however you want to run the TypeScript compiler manually from the command line when using tsconfig.json you can do it in a few ways.

  • Just run tsc and it will look for tsconfig.json in the current as well as all parent folders till it finds it.
  • Run tsc -p ./path-to-project-directory. Of course the path can be a complete or relative to the current directory.

You can even start the TypeScript compiler in watch mode using tsc -w and it will watch your TypeScript project files for changes.