Understanding “target” and “module” in tsconfig

后端 未结 2 1005
小蘑菇
小蘑菇 2020-12-13 11:38

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

{
   "compilerOptions": {
            


        
2条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-13 12:19

    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."

提交回复
热议问题