javascript - using core-js with TypeScript - Stack Overflow

The Kangax patibility table for ES6 atshows results for "TypeScript + core-js".I need co

The Kangax patibility table for ES6 at / shows results for "TypeScript + core-js". I need core-js in order to use ES6 methods like String#startsWith. I haven't been able to figure out how to tell the TypeScript piler to consider core-js and couldn't find an example. How can I use core-js with TypeScript?

The Kangax patibility table for ES6 at http://kangax.github.io/pat-table/es6/ shows results for "TypeScript + core-js". I need core-js in order to use ES6 methods like String#startsWith. I haven't been able to figure out how to tell the TypeScript piler to consider core-js and couldn't find an example. How can I use core-js with TypeScript?

Share Improve this question asked Jul 14, 2015 at 21:36 Mark VolkmannMark Volkmann 9791 gold badge12 silver badges15 bronze badges 2
  • Wouldn't you be able to use the standard ES6 definitions from typescript? github./Microsoft/TypeScript/blob/master/bin/lib.es6.d.ts Or do you mean how would you load the library? – loganfsmyth Commented Jul 14, 2015 at 21:43
  • Ah, yes I can use that! Thanks! – Mark Volkmann Commented Jul 15, 2015 at 18:45
Add a ment  | 

2 Answers 2

Reset to default 6

If you using Typescript 2.0, you can use @types to solve this issue.

@types and types

When you pile typescript code, by default all visible @types packages are included in your pilation. Packages in node_modules/@types of any enclosing folder are considered visible; specifically, that means packages within:

  • ./node_modules/@types/,
  • ../node_modules/@types/,
  • ../../node_modules/@types/,

and so on.

@types/core-js provide the definition for core.js, you can install it as another modules.

npm install --save-dev @types/core-js

More information at: tscconfig.json

Good luck.

The Typescript repo provides standard definitions for ES6 functionality.

I suppose if you wanted to use some of core-js's functionality that is beyond ES6, you would have to add definition files yourself.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743718846a4495466.html

相关推荐

  • javascript - using core-js with TypeScript - Stack Overflow

    The Kangax patibility table for ES6 atshows results for "TypeScript + core-js".I need co

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信