2017-05-26 21:28:06 +02:00
# TypeScript Configuration
2017-04-01 01:57:13 +02:00
2017-07-30 00:03:22 +08:00
# TypeScript 配置
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
TypeScript is a primary language for Angular application development.
It is a superset of JavaScript with design-time support for type safety and tooling.
2017-07-23 11:51:25 +08:00
TypeScript是Angular应用开发中使用的主语言。
它是JavaScript的“方言”之一, 为类型安全和工具化而做了设计期支持。
Browsers can't execute TypeScript directly. Typescript must be "transpiled" into JavaScript using the *tsc* compiler
2017-03-27 16:08:53 +01:00
which requires some configuration.
2017-07-23 11:51:25 +08:00
浏览器不能直接执行TypeScript。它得先用*tsc*编译器转译(transpile)成JavaScript, 而且编译器需要进行一些配置。
2017-03-27 16:08:53 +01:00
This page covers some aspects of TypeScript configuration and the TypeScript environment
that are important to Angular developers, including details about the following files:
2017-07-30 12:43:20 +08:00
本页面会涵盖TypeScript配置与环境的某些方面, 这些对Angular开发者是很重要的。具体来说包括下列文件:
2017-07-23 11:51:25 +08:00
* [tsconfig.json ](guide/typescript-configuration#tsconfig ) — TypeScript compiler configuration.
[tsconfig.json ](guide/typescript-configuration#tsconfig ) - TypeScript编译器配置。
* [typings ](guide/typescript-configuration#typings ) — TypesScript declaration files.
[typings ](guide/typescript-configuration#typings ) - TypesScript类型声明文件。
2017-03-27 16:08:53 +01:00
{@a tsconfig}
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
## *tsconfig.json*
2017-07-23 11:51:25 +08:00
2017-08-04 14:06:15 +08:00
## *tsconfig.json* 文件
2017-03-27 16:08:53 +01:00
Typically, you add a TypeScript configuration file called `tsconfig.json` to your project to
guide the compiler as it generates JavaScript files.
2017-07-23 11:51:25 +08:00
我们通常会往项目中加入一个TypeScript配置文件(`tsconfig.json` ), 来指导编译器如何生成JavaScript文件。
2017-04-10 16:51:13 +01:00
< div class = "l-sub-section" >
2017-03-27 16:08:53 +01:00
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
For details about `tsconfig.json` , see the official
[TypeScript wiki ](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html ).
2017-07-23 11:51:25 +08:00
要了解关于`tsconfig.json` 的详情,请参阅官方提供的
[TypeScript wiki ](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html )。
2017-04-10 16:51:13 +01:00
< / div >
2017-03-27 16:08:53 +01:00
2017-04-01 01:57:13 +02:00
The [Setup ](guide/setup ) guide uses the following `tsconfig.json` :
2017-07-23 11:51:25 +08:00
我们在[搭建本地开发环境 ](guide/setup )中创建过如下的`tsconfig.json` :
2017-05-30 11:22:06 +03:00
< code-example path = "quickstart/src/tsconfig.1.json" title = "tsconfig.json" linenums = "false" > < / code-example >
2017-04-01 01:57:13 +02:00
This file contains options and flags that are essential for Angular applications.
2017-07-23 11:51:25 +08:00
该文件中的选项和标志是写Angular应用程序的基础。
2017-04-01 01:57:13 +02:00
{@a noImplicitAny}
2017-03-27 16:08:53 +01:00
### *noImplicitAny* and *suppressImplicitAnyIndexErrors*
2017-07-23 11:51:25 +08:00
### *noImplicitAny*与*suppressImplicitAnyIndexErrors*
2017-03-27 16:08:53 +01:00
TypeScript developers disagree about whether the `noImplicitAny` flag should be `true` or `false` .
There is no correct answer and you can change the flag later.
But your choice now can make a difference in larger projects, so it merits discussion.
2017-07-23 11:51:25 +08:00
TypeScript开发者们在`noImplicitAny` 标志应该是`true` 还是`false` 上存在分歧。
这没有标准答案,我们以后还可以修改这个标志。
但是我们的选择会在大项目中产生显著差异,所以它值得讨论一番。
2017-03-27 16:08:53 +01:00
When the `noImplicitAny` flag is `false` (the default), and if
the compiler cannot infer the variable type based on how it's used,
the compiler silently defaults the type to `any` . That's what is meant by *implicit `any`* .
2017-07-23 11:51:25 +08:00
当`noImplicitAny` 标志是`false` (默认值)时,
如果编译器无法根据变量的用途推断出变量的类型,它就会悄悄的把变量类型默认为`any` 。这就是*隐式`any` *的含义。
2017-03-27 16:08:53 +01:00
The documentation setup sets the `noImplicitAny` flag to `true` .
2017-07-23 11:51:25 +08:00
本文档在环境搭建时将`noImplicitAny` 标志设置为`true` 。
2017-03-27 16:08:53 +01:00
When the `noImplicitAny` flag is `true` and the TypeScript compiler cannot infer
the type, it still generates the JavaScript files, but it also **reports an error** .
Many seasoned developers prefer this stricter setting because type checking catches more
unintentional errors at compile time.
2017-07-23 11:51:25 +08:00
当`noImplicitAny` 标志是`true` 并且TypeScript编译器无法推断出类型时, 它仍然会生成JavaScript文件。
但是它也会**报告一个错误**。
很多饱经沧桑的程序员更喜欢这种严格的设置,因为类型检查能在编译期间捕获更多意外错误。
2017-03-27 16:08:53 +01:00
You can set a variable's type to `any` even when the `noImplicitAny` flag is `true` .
2017-07-23 11:51:25 +08:00
即使`noImplicitAny` 标志被设置成了`true` ,你也可以把变量的类型设置为`any` 。
2017-03-27 16:08:53 +01:00
When the `noImplicitAny` flag is `true` , you may get *implicit index errors* as well.
Most developers feel that *this particular error* is more annoying than helpful.
You can suppress them with the following additional flag:
2017-03-30 20:04:18 +01:00
2017-07-23 11:51:25 +08:00
如果我们把`noImplicitAny` 标志设置为了`true` ,我们可能会得到*隐式索引错*。
大多数程序员可能觉得*这种错误*是个烦恼而不是助力。
我们可以使用另一个标志来禁止它们。
2017-03-27 16:08:53 +01:00
< code-example format = "." >
2017-04-01 01:57:13 +02:00
"suppressImplicitAnyIndexErrors":true
2017-03-27 16:08:53 +01:00
< / code-example >
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
The documentation setup sets this flag to `true` as well.
2017-07-23 11:51:25 +08:00
本文档在环境搭建时将`noImplicitAny` 标志设置为`true` 。
2017-03-27 16:08:53 +01:00
{@a typings}
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
## TypeScript Typings
2017-07-23 11:51:25 +08:00
## TypeScript类型定义(typings)
2017-03-27 16:08:53 +01:00
Many JavaScript libraries, such as jQuery, the Jasmine testing library, and Angular,
extend the JavaScript environment with features and syntax
that the TypeScript compiler doesn't recognize natively.
2017-07-23 11:51:25 +08:00
When the compiler doesn't recognize something, it throws an error.
很多JavaScript库, 比如jQuery、Jasmine测试库和Angular, 会通过新的特性和语法来扩展JavaScript环境。
而TypeScript编译器并不能原生的识别它们。
当编译器不能识别时,它就会抛出一个错误。
2017-03-27 16:08:53 +01:00
Use [TypeScript type definition files ](https://www.typescriptlang.org/docs/handbook/writing-declaration-files.html )— `d.ts files` — to tell the compiler about the libraries you load.
2017-07-23 11:51:25 +08:00
我们可以使用[TypeScript类型定义文件 ](https://www.typescriptlang.org/docs/handbook/writing-declaration-files.html )
—— `.d.ts` 文件 —— 来告诉编译器要加载的库的类型定义。
2017-03-27 16:08:53 +01:00
TypeScript-aware editors leverage these same definition files to display type information about library features.
2017-07-23 11:51:25 +08:00
TypeScript敏感的编辑器借助这些定义文件来显示这些库中各个特性的类型定义。
2017-03-27 16:08:53 +01:00
Many libraries include definition files in their npm packages where both the TypeScript compiler and editors
can find them. Angular is one such library.
The `node_modules/@angular/core/` folder of any Angular application contains several `d.ts` files that describe parts of Angular.
2017-07-23 11:51:25 +08:00
很多库在自己的npm包中都包含了它们的类型定义文件, TypeScript编译器和编辑器都能找到它们。Angular库也是这样的。
任何Angular应用程序的`node_modules/@angular/core/` 目录下,都包含几个`d.ts` 文件, 它们描述了Angular的各个部分。
**You need do nothing to get *typings* files for library packages that include `d.ts` files. Angular packages include them already.**
**我们不需要为那些包含了`d.ts` 文件的库获取*类型定义*文件 —— Angular的所有包都是如此。**
2017-03-27 16:08:53 +01:00
### lib.d.ts
2017-08-04 14:06:15 +08:00
### lib.d.ts 文件
2017-03-27 16:08:53 +01:00
TypeScript includes a special declaration file called `lib.d.ts` . This file contains the ambient declarations for various common JavaScript constructs present in JavaScript runtimes and the DOM.
2017-07-23 11:51:25 +08:00
TypeScript带有一个特殊的声明文件, 名为`lib.d.ts` 。该文件包含了JavaScript运行库和DOM的各种常用JavaScript环境声明。
2017-03-27 16:08:53 +01:00
Based on the `--target` , TypeScript adds _additional_ ambient declarations
like `Promise` if the target is `es6` .
2017-07-23 11:51:25 +08:00
基于`--target` , TypeScript添加*额外*的环境声明,例如如果目标为`es6` 时将添加`Promise` 。
2017-03-27 16:08:53 +01:00
Since the QuickStart is targeting `es5` , you can override the
list of declaration files to be included:
2017-08-07 07:49:44 +08:00
因为《快速上手》的目标为`es5` ,所以我们可以重写声明文件列表来包含:
2017-07-23 11:51:25 +08:00
2017-03-30 20:04:18 +01:00
2017-03-27 16:08:53 +01:00
< code-example format = "." >
2017-04-01 01:57:13 +02:00
"lib": ["es2015", "dom"]
2017-03-27 16:08:53 +01:00
< / code-example >
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
Thanks to that, you have all the `es6` typings even when targeting `es5` .
2017-07-23 11:51:25 +08:00
得益于这项设置,即使编译目标设置为`es5` ,我们也能获得所有的`es6` 类型信息。
2017-03-27 16:08:53 +01:00
### Installable typings files
2017-07-23 11:51:25 +08:00
### 安装类型定义文件
2017-03-27 16:08:53 +01:00
Many libraries— jQuery, Jasmine, and Lodash among them— do *not* include `d.ts` files in their npm packages.
Fortunately, either their authors or community contributors have created separate `d.ts` files for these libraries and
published them in well-known locations.
2017-07-23 11:51:25 +08:00
遗憾的是,很多库 —— jQuery、Jasmine和Lodash等库 —— 都*没有*在它们自己的npm包中包含`d.ts` 文件。
幸运的是,它们的作者或社区中的贡献者已经为这些库创建了独立的`d.ts` 文件,并且把它们发布到了一个众所周知的位置。
2017-03-27 16:08:53 +01:00
You can install these typings via `npm` using the
[`@types/*` scoped package ](http://www.typescriptlang.org/docs/handbook/declaration-files/consumption.html )
and Typescript, starting at 2.0, automatically recognizes them.
2017-07-23 11:51:25 +08:00
我们还可以通过`npm` 来使用[`@types/*`范围化包 ](http://www.typescriptlang.org/docs/handbook/declaration-files/consumption.html )来安装这些类型信息,
而TypeScript自从2.0开始,可以自动识别它们。
2017-03-27 16:08:53 +01:00
For instance, to install typings for `jasmine` you could do `npm install @types/jasmine --save-dev` .
2017-04-01 01:57:13 +02:00
2017-07-23 11:51:25 +08:00
比如,要安装`jasmine` 的类型信息,我们可以执行`npm install @types/jasmine --save-dev` 。
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
QuickStart identifies two *typings* , or `d.ts` , files:
2017-08-07 07:49:44 +08:00
我们在“快速上手”中指定过两个*类型定义*文件(`d.ts` ) :
2017-07-23 11:51:25 +08:00
2017-03-27 16:08:53 +01:00
* [jasmine ](http://jasmine.github.io/ ) typings for the Jasmine test framework.
2017-07-23 11:51:25 +08:00
[jasmine ](http://jasmine.github.io/ )是Jasmine测试框架的类型定义
* [node ](https://www.npmjs.com/package/@types/node ) for code that references objects in the *nodejs* environment;
2017-03-27 16:08:53 +01:00
you can view an example in the [webpack ](guide/webpack ) page.
2017-07-23 11:51:25 +08:00
[node ](https://www.npmjs.com/package/@types/node )是为了在*nodejs*环境中引用对象的代码提供的类型定义。在[webpack ](guide/webpack )页面可以看到例子。
QuickStart doesn't require these typings but many of the samples do.
2017-08-07 07:49:44 +08:00
“快速上手”本身不需要这些类型定义,但是文档中的很多例子都需要。
2018-02-28 13:13:29 +08:00
2018-01-27 13:45:03 +09:00
{@a target}
### *target*
By default, the target is `es5` , you can configure the target to `es6` if you only want to deploy the application to
es6 compatible browser. But if you configure the target to `es6` in some old browser such as `IE` , `Syntax Error` will be thrown.