tsconfig,json的目标是什么?

问题描述 投票:79回答:2

target中的tsconfig.json代表什么?

{
  "compilerOptions": 
  {
    "sourceMap": true,
    "target": "es5",
    "module": "commonjs",
    "jsx": "react",
    "moduleResolution": "classic",
    "lib": [ "es2015", "dom",  "es2017" ]
  }
}
typescript tsconfig transpiler
2个回答
92
投票

我对Typescript很陌生。 tsconfig.json中的Target表示什么?


7
投票

目标更改了要编译的JavaScript版本。

© www.soinside.com 2019 - 2024. All rights reserved.