TypeScript目标ES3

时间:2017-12-14 22:51:06

标签: typescript tsc

ES5中引入了

Array.prototype.indexOfDate.now。如果我编译存储在test.ts文件中的以下代码,那么为什么不运行Typescript?

Date.now();
[1,2,3].indexOf(2);

我使用的命令是tsc -t es3 test.ts。生成的test.js与test.ts完全相同。

1 个答案:

答案 0 :(得分:3)

  

如果我编译存储在test.ts文件中的以下代码,为什么不运行Typescript?

  • TypeScript不会填充。
  • 使用corejs进行polyfill

更多