Added ES2017.TypedArrays lib. PR680

This commit is contained in:
zhongsp 2017-11-20 15:03:29 +08:00
parent 59eed7c9bb
commit d3d9114df6

View File

@ -26,7 +26,7 @@
`--isolatedModules` | `boolean` | `false` | 将每个文件作为单独的模块与“ts.transpileModule”类似
`--jsx` | `string` | `"Preserve"` | 在`.tsx`文件里支持JSX`"React"`或`"Preserve"`。查看[JSX](./JSX.md)。
`--jsxFactory` | `string` | `"React.createElement"` | 指定生成目标为react JSX时使用的JSX工厂函数比如`React.createElement`或`h`。
`--lib` | `string[]`| | 编译过程中需要引入的库文件的列表。<br/>可能的值为: <br/>`ES5` <br/>`ES6` <br/>`ES2015` <br/>`ES7` <br/>`ES2016` <br/>`ES2017` <br/>`DOM` <br/>`DOM.Iterable` <br/>`WebWorker` <br/>`ScriptHost` <br/>`ES2015.Core` <br/>`ES2015.Collection` <br/>`ES2015.Generator` <br/>`ES2015.Iterable` <br/>`ES2015.Promise` <br/>`ES2015.Proxy` <br/>`ES2015.Reflect` <br/>`ES2015.Symbol` <br/>`ES2015.Symbol.WellKnown` <br/>`ES2016.Array.Include` <br/>`ES2017.object` <br/>`ES2017.SharedMemory` <br/><br/> 注意:如果`--lib`没有指定默认注入的库的列表。默认注入的库为:<br/> ► 针对于`--target ES5``DOMES5ScriptHost`<br/> ► 针对于`--target ES6``DOMES6DOM.IterableScriptHost`
`--lib` | `string[]`| | 编译过程中需要引入的库文件的列表。<br/>可能的值为: <br/>`ES5` <br/>`ES6` <br/>`ES2015` <br/>`ES7` <br/>`ES2016` <br/>`ES2017` <br/>`DOM` <br/>`DOM.Iterable` <br/>`WebWorker` <br/>`ScriptHost` <br/>`ES2015.Core` <br/>`ES2015.Collection` <br/>`ES2015.Generator` <br/>`ES2015.Iterable` <br/>`ES2015.Promise` <br/>`ES2015.Proxy` <br/>`ES2015.Reflect` <br/>`ES2015.Symbol` <br/>`ES2015.Symbol.WellKnown` <br/>`ES2016.Array.Include` <br/>`ES2017.object` <br/>`ES2017.SharedMemory``ES2017.TypedArrays` <br/>`esnext.asynciterable` <br/><br/> 注意:如果`--lib`没有指定默认注入的库的列表。默认注入的库为:<br/> ► 针对于`--target ES5``DOMES5ScriptHost`<br/> ► 针对于`--target ES6``DOMES6DOM.IterableScriptHost`
`--listEmittedFiles` | `boolean` | `false` | 打印出编译后生成文件的名字。
`--listFiles` | `boolean` | `false` | 编译过程中打印文件名。
`--locale` | `string` | *(platform specific)* | 显示错误信息时使用的语言比如en-us。