TypeScript 3.4

使用 --incremental 标志加快后续构建

TypeScript 3.4 引入了一个名为 --incremental 的新标志,它告诉 TypeScript 从上一次编译中保存有关项目图的信息。

下次使用 --incremental 调用 TypeScript 时,它将使用该信息来检测类型检查和生成对项目更改成本最低的方法。

  1. // tsconfig.json
  2. {
  3. "compilerOptions": {
  4. "incremental": true,
  5. "outDir": "./lib"
  6. },
  7. "include": ["./src"]
  8. }

默认使用这些设置,当我们运行 tsc 时,TypeScript 将在输出目录(./lib)中查找名为 .tsbuildinfo 的文件。 如果 ./lib/.tsbuildinfo 不存在,它将被生成。 但如果存在,tsc 将尝试使用该文件逐步进行类型检查并更新输出文件。

这些 .tsbuildinfo 文件可以安全地删除,并且在运行时对我们的代码没有任何影响——它们纯粹用于更快地编译。 我们也可以将它们命名为我们想要的任何名字,并使用 --tsBuildInfoFile 标志将它们放在我们想要的任何位置。

  1. // front-end.tsconfig.json
  2. {
  3. "compilerOptions": {
  4. "incremental": true,
  5. "tsBuildInfoFile": "./buildcache/front-end",
  6. "outDir": "./lib"
  7. },
  8. "include": ["./src"]
  9. }

复合项目

复合项目的意图的一部分(tsconfig.jsons,composite 设置为 true)是不同项目之间的引用可以增量构建。 因此,复合项目将始终生成 .tsbuildinfo 文件。

outFile

当使用 outFile 时,构建信息文件的名称将基于输出文件的名称。 例如,如果我们的输出 JavaScript 文件是 ./ output / foo.js,那么在 --incremental 标志下,TypeScript 将生成文件./output/foo.tsbuildinfo。 如上所述,这可以通过 --tsBuildInfoFile 标志来控制。

泛型函数的高阶类型推断

当来自其它泛型函数的推断产生用于推断的自由类型变量时,TypeScript 3.4 现在可以生成泛型函数类型。

这意味着在 3.4 中许多函数组合模式现在运行的更好了。

为了更具体,让我们建立一些动机并考虑以下 compose 函数:

  1. function compose<A, B, C>(f: (arg: A) => B, g: (arg: B) => C): (arg: A) => C {
  2. return x => g(f(x));
  3. }

compose 还有两个其他函数:

  • f 它接受一些参数(类型为 A)并返回类型为 B 的值
  • g 采用类型为 B 的参数(类型为 f 返回),并返回类型为 C 的值

compose 然后返回一个函数,它通过 f 然后 g 来提供它的参数。

调用此函数时,TypeScript 将尝试通过一个名为 type argument inference 的进程来计算出 ABC 的类型。 这个推断过程通常很有效:

  1. interface Person {
  2. name: string;
  3. age: number;
  4. }
  5. function getDisplayName(p: Person) {
  6. return p.name.toLowerCase();
  7. }
  8. function getLength(s: string) {
  9. return s.length;
  10. }
  11. // 拥有类型 '(p: Person) => number'
  12. const getDisplayNameLength = compose(
  13. getDisplayName,
  14. getLength,
  15. );
  16. // 有效并返回 `number` 类型
  17. getDisplayNameLength({ name: "Person McPersonface", age: 42 });

推断过程在这里相当简单,因为 getDisplayNamegetLength 使用的是可以轻松引用的类型。 但是,在 TypeScript 3.3 及更早版本中,泛型函数如 compose 在传递其他泛型函数时效果不佳。

  1. interface Box<T> {
  2. value: T;
  3. }
  4. function makeArray<T>(x: T): T[] {
  5. return [x];
  6. }
  7. function makeBox<U>(value: U): Box<U> {
  8. return { value };
  9. }
  10. // 类型为 '(arg: {}) => Box<{}[]>'
  11. const makeBoxedArray = compose(
  12. makeArray,
  13. makeBox,
  14. )
  15. makeBoxedArray("hello!").value[0].toUpperCase();
  16. // ~~~~~~~~~~~
  17. // 错误:类型 '{}' 没有 'toUpperCase' 属性

在旧版本中,当从其他类型变量(如 TU)推断时,TypeScript 会推断出空对象类型({})。

在 TypeScript 3.4 中的类型参数推断时,对于返回函数的泛型函数的调用,TypeScript (视情况而定)把类型参数从泛型函数参数传递到生成的函数类型中。

换句话说,而不是生成类型

  1. (arg: {}) => Box<{}[]>

TypeScript 3.4 生成的类型

  1. <T>(arg: T) => Box<T[]>

注意,T 已从 makeArray 传递到结果类型的类型参数列表中。 这意味着来自 compose 参数的泛型已被保留,我们的 makeBoxedArray 示例将正常运行!

  1. interface Box<T> {
  2. value: T;
  3. }
  4. function makeArray<T>(x: T): T[] {
  5. return [x];
  6. }
  7. function makeBox<U>(value: U): Box<U> {
  8. return { value };
  9. }
  10. // 类型为 '<T>(arg: T) => Box<T[]>'
  11. const makeBoxedArray = compose(
  12. makeArray,
  13. makeBox,
  14. )
  15. // 正常运行!
  16. makeBoxedArray("hello!").value[0].toUpperCase();

更多细节,你可以读到更多从这些原始的变动

改进 ReadonlyArrayreadonly 元祖

TypeScript 3.4 让使用只读的类似数组的类型更简单了。

一个与 ReadonlyArray 相关的新语法

ReadonlyArray 类型描述 Array 是只读的。

任何带有 ReadonlyArray 引用的变量不能被添加、移除或者替换数组中的任何元素。

  1. function foo(arr: ReadonlyArray<string>) {
  2. arr.slice(); // okay
  3. arr.push("hello!"); // error!
  4. }

当期待数组不可变时使用 ReadonlyArray 替代 Array 是好实践,考虑到数组有一个更棒的语法的情况下这通常有一点痛苦。 尤其是,number[] 是一个省略版的 Array<number>,就像 Date[] 是省略版的 Array<Date>

TypeScript 3.4 为 ReadonlyArray 引入了一个新的语法,就是在数组类型上使用了新的 readonly 修饰语。

  1. function foo(arr: readonly string[]) {
  2. arr.slice(); // okay
  3. arr.push("hello!"); // 错误!
  4. }

readonly 元祖

TypeScript 3.4 同样引入了对 readonly 元祖的支持。 我们可以在任何元祖类型上加上前置 readonly 关键字用来表示它是 readonly 元祖,非常像我们现在可以对数组使用的省略版语法。 就像你可能期待的,不像插槽可写的普通元祖,readonly 元祖只允许从那些位置读。

  1. function foo(pair: readonly [string, string]) {
  2. console.log(pair[0]); // okay
  3. pair[1] = "hello!"; // 错误
  4. }

普通的元祖是用相同的方式从 Array 继承的——一个元祖T1, T2, … Tn 继承自 Array< T1 | T2 | ... Tn > - readonly 元祖是继承自类型 ReadonlyArray。所以,一个 readonly 元祖 T1, T2, … Tn 继承自 ReadonlyArray< T1 | T2 | ... Tn >

映射类型修饰语 readonlyreadonly 数组

在之前的 TypeScript 版本中,我们一般使用映射类型操作不同的类似数组的结构。

这意味着,一个映射类型像 Boxify 可以在数组上生效,元祖也是。

  1. interface Box<T> { value: T }
  2. type Boxify<T> = {
  3. }
  4. // { a: Box<string>, b: Box<number> }
  5. type A = Boxify<{ a: string, b: number }>;
  6. // Array<Box<number>>
  7. type B = Boxify<number[]>;
  8. // [Box<string>, Box<number>]
  9. type C = Boxify<[string, boolean]>;

不幸的是,映射类型像 Readonly 实用类型在数组和元祖类型上实际上是无用的。

  1. // lib.d.ts
  2. type Readonly<T> = {
  3. readonly [K in keyof T]: T[K]
  4. }
  5. // 在 TypeScript 3.4 之前代码会如何执行
  6. // { readonly a: string, readonly b: number }
  7. type A = Readonly<{ a: string, b: number }>;
  8. // number[]
  9. type B = Readonly<number[]>;
  10. // [string, boolean]
  11. type C = Readonly<[string, boolean]>;

在 TypeScript 3.4,在映射类型中的 readonly 修饰符将自动的转换类似数组结构到他们相符合的 readonly 副本。

  1. // 在 TypeScript 3.4 中代码会如何运行
  2. // { readonly a: string, readonly b: number }
  3. type A = Readonly<{ a: string, b: number }>;
  4. // readonly number[]
  5. type B = Readonly<number[]>;
  6. // readonly [string, boolean]
  7. type C = Readonly<[string, boolean]>;

类似地,你可以编写一个类似 Writable 映射类型的实用程序类型来移除 readonly-ness,并将 readonly 数组容器转换回它们的可变等价物。

  1. type Writable<T> = {
  2. -readonly [K in keyof T]: T[K]
  3. }
  4. // { a: string, b: number }
  5. type A = Writable<{
  6. readonly a: string;
  7. readonly b: number
  8. }>;
  9. // number[]
  10. type B = Writable<readonly number[]>;
  11. // [string, boolean]
  12. type C = Writable<readonly [string, boolean]>;

注意事项

它不是一个通用型操作,尽管它看起来像。 readonly 类型修饰符只能用于数组类型和元组类型的语法。

  1. let err1: readonly Set<number>; // 错误!
  2. let err2: readonly Array<boolean>; // 错误!
  3. let okay: readonly boolean[]; // 有效

你可以查看 pull request 了解更多详情

const 断言

TypeScript 3.4 引入了一个叫 const 断言的字面量值的新构造。 它的语法是用 const 代替类型名称的类型断言(例如 123 as const)。 当我们用 const 断言构造新的字面量表达式时,我们可以用来表示:

  • 该表达式中的字面量类型不应粗化(例如,不要从 'hello'string
  • 对象字面量获得 readonly 属性
  • 数组字面量成为 readonly 元组
  1. // Type '"hello"'
  2. let x = "hello" as const;
  3. // Type 'readonly [10, 20]'
  4. let y = [10, 20] as const;
  5. // Type '{ readonly text: "hello" }'
  6. let z = { text: "hello" } as const;

也可以使用尖括号断言语法,除了 .tsx 文件之外。

  1. // Type '"hello"'
  2. let x = <const>"hello";
  3. // Type 'readonly [10, 20]'
  4. let y = <const>[10, 20];
  5. // Type '{ readonly text: "hello" }'
  6. let z = <const>{ text: "hello" };

此功能意味着通常可以省略掉仅用于将不可变性示意给编译器的类型。

  1. // 不使用引用或声明的类型。
  2. // 我们只需要一个 const 断言。
  3. function getShapes() {
  4. let result = [
  5. { kind: "circle", radius: 100, },
  6. { kind: "square", sideLength: 50, },
  7. ] as const;
  8. return result;
  9. }
  10. for (const shape of getShapes()) {
  11. // 完美细化
  12. if (shape.kind === "circle") {
  13. console.log("Circle radius", shape.radius);
  14. }
  15. else {
  16. console.log("Square side length", shape.sideLength);
  17. }
  18. }

请注意,上面的例子不需要类型注释。 const 断言允许 TypeScript 采用最具体的类型表达式。

如果你选择不使用 TypeScript 的 enum 结构,这甚至可以用于在纯 JavaScript 代码中使用类似 enum 的模式。

  1. export const Colors = {
  2. red: "RED",
  3. blue: "BLUE",
  4. green: "GREEN",
  5. } as const;
  6. // 或者使用 'export default'
  7. export default {
  8. red: "RED",
  9. blue: "BLUE",
  10. green: "GREEN",
  11. } as const;

注意事项

需要注意的是,const 断言只能直接应用于简单的字面量表达式上。

  1. // 错误!'const' 断言只能用在 string, number, boolean, array, object literal。
  2. let a = (Math.random() < 0.5 ? 0 : 1) as const;
  3. // 有效!
  4. let b = Math.random() < 0.5 ?
  5. 0 as const :
  6. 1 as const;

另一件得记住的事是 const 上下文不会直接将表达式转换为完全不可变的。

  1. let arr = [1, 2, 3, 4];
  2. let foo = {
  3. name: "foo",
  4. contents: arr,
  5. } as const;
  6. foo.name = "bar"; // 错误!
  7. foo.contents = []; // 错误!
  8. foo.contents.push(5); // ...有效!

更多详情,你可以查看相应的 pull request

globalThis 的类型检查

TypeScript 3.4 引入了对 ECMAScript 新 globalThis 全局变量的类型检查的支持,它指向的是全局作用域。 与上述解决方案不同,globalThis 提供了一种访问全局作用域的标准方法,可以在不同环境中使用。

  1. // 在一个全局文件里:
  2. var abc = 100;
  3. // 指向上面的 `abc`
  4. globalThis.abc = 200;

注意,使用 letconst 声明的全局变量不会显示在 globalThis 上。

  1. let answer = 42;
  2. // 错误!'typeof globalThis' 没有 'answer' 属性。
  3. globalThis.answer = 333333;

同样重要的是要注意,在编译为老版本的 ECMAScript 时,TypeScript 不会转换引用到 globalThis 上。 因此,除非您的目标是常青浏览器(已经支持 globalThis),否则您可能需要使用 polyfill

更多详细信息,请参阅该功能的 pull request

参考