TypeScript输出ES5代码

时间:2017-09-07 12:11:43

标签: typescript

在typescript中,如何告诉编译器实际输出类,consts,let等,而不是将所有内容转换为vars和函数?我使用的是Typescript 2.4.1。

这是我的tsconfig:

{
  "compilerOptions": {
    /* Basic Options */
    "target": "es2017", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */
    "module": "es2015", /* Specify module code generation: 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
    "moduleResolution": "node",
    "strict": false, /* Enable all strict type-checking options. */
    "lib": [
      "es2015",
      "dom",
      "es2016",
      "es2017"
    ],
    "alwaysStrict": true
  }
}

1 个答案:

答案 0 :(得分:3)

您必须在没有任何输入文件作为参数的情况下调用tsc,以便使用tsconfig.json

From the documentation

  

在命令行中指定输入文件时,tsconfig.json   文件被忽略。