Understanding "target" and "module" in tsconfig

Typescript

Typescript Problem Overview


Below is my tsconfig.json file where I have set target to es5 and module to es6

{
   "compilerOptions": {
   "target": "es5",    
   "module": "es6"
   }

}

My question is because modules [import / export ] are part of es6 and NOT es5 , the transpiled javascript code should not be having import / export statements. But the javascript code that is generated is having import / export statements even though the target is es5 , how is it possible ?

Typescript Solutions


Solution 1 - Typescript

The module system is independent of the language implementation. ES6 (ES2015) modules use the import/export syntax, and it is up to the module loader to interpret that.

Here you have specified using the ES2015 module system, so that enables the ES6 module syntax.

The JavaScript itself may target ES5, and use only ES5 features, but it is theoretically possible to use a module loader with that code that operates with ES2015 module syntax. Although it is possible, it is not necessarily something you would want to do. It is more common to use CommonJS or AMD modules with ES5 JavaScript.

Apparently this combination was not even allowed before TypeScript 2.0. In the TypeScript 2.0 release notes, it says:

> "Previously flagged as an invalid flag combination, target: es5 and ‘module: es6’ is now supported. This should facilitate using ES2015-based tree shakers like rollup."

Solution 2 - Typescript

To supplement the previous answer, in 2020 there are 4 TS config options that define the module resolution and compilation output:

  • module.
  • target.
  • lib.
  • moduleResolution.

The first 3 affect your output, while the latter affects the way the compiler searches for your modules to resolve them and bundle.

Here's a great and concise article about these options: Typescript confusion: tsconfig.json module, moduleResolution, target & lib explained | by Tom Medema | Medium.

Additionally, a doc about module resolution: TypeScript: Handbook - Module Resolution.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionrefactorView Question on Stackoverflow
Solution 1 - TypescriptjimsView Answer on Stackoverflow
Solution 2 - TypescriptAlexey GrinkoView Answer on Stackoverflow