# TypeScript 4.0 新特性
# 构造函数的类属性推断
当 noImplicitAny
配置属性被启用后,TypeScript 4.0 就可以使用控制流分析来推断类属性的类型。
class Person {
fullName;
firstName;
lastName;
constructor(fullName: string) {
this.fullName = fullName;
this.firstName = fullName.split(" ")[0];
this.lastName = fullName.split(" ")[1];
}
}
# 标记的元组元素
使用元组声明剩余参数的类型:
代码语言:javascript复制function addPerson(...args: [string, number]): void {
console.log(`Person: ${args[0]}, Age: ${args[1]}`);
}
addPerson("Cell", 18); // Person: Cell, Age: 18
直接设置参数名称实现:
代码语言:javascript复制function addPerson(name: string, age: number): void {
console.log(`Person: ${name}, Age: ${age}`);
}
addPerson("Cell", 18); // Person: Cell, Age: 18
为元组类型设置标签:
代码语言:javascript复制function addPerson(...args: [name: string, age: number]): void {
console.log(`Person: ${args[0]}, Age: ${args[1]}`);
}
addPerson("Cell", 18); // Person: Cell, Age: 18
# 编译上下文
# tsconfig.json
- 作用
- 标识 TypeScript 项目的根目录
- 配置 TypeScript 编译器的选项
- 指定编译的文件
- 主要字段
files
:设置要编译的文件的名称include
:设置要进行编译的文件,支持路径模式匹配exclude
:设置不进行编译的文件,支持路径模式匹配compilerOptions
:设置与编译流程相关的选项
# compilerOptions
代码语言:javascript复制{
"compilerOptions": {
/** 基本选项 */
"target": "es5", // 指定 ECMAScript 目标版本 'ES3' 'ES5' 'ES6' / 'ES2015' 'ES2016' 'ES2017' 'ESNext'
"module": "commonjs", // 指定使用模块 'commonjs' 'amd' 'system' 'umd' 'es2015'
"lib": [], // 指定要包含在编译中的库文件
"allowJs": true, // 允许编译 javascript 文件
"checkJs": true, // 报告 javascript 文件中的错误
"jsx": "preserve", // 指定 jsx 代码的生成 'preserve' 'react-native' 'react'
"declaration": true, // 生成相应的 '.d.ts' 文件
"sourceMap": true, // 生成相应的 '.map' 文件
"outFile": "./", // 将输出文件合并为一个文件
"outDir": "./", // 指定输出目录
"rootDir": "./", // 用来控制输出目录结构 --outDir
"removeComments": true, // 删除编译后的所有的注释
"noEmit": true, // 不生成输出文件
"importHelpers": true, // 从 tslib 导入辅助工具函数
"isolatedModules": true, // 使每个文件为单独的模块(与 'ts.transpileModule' 类似)
/** 严格的类型检查选项 */
"strict": true, // 启用所有严格类型检查选项
"noImplicitAny": true, // 在表达式和声明上有隐含的 any 类型时报错
"strictNullChecks": true, // 启用严格的 null 检查
"noImplicitThis": true, // 当 this 表达式值为 any 类型时报错
"alwaysStrict": true, // 以严格模式检查每个模块,并在每个文件里加入 'use strict'
/** 额外的检查 */
"noUnusedLocals": true, // 有未使用的变量时报错
"noUnusedParameters": true, // 有未使用的参数时报错
"noImplicitReturns": true, // 不是所有函数里的代码都有返回值时报错
"noFallthroughCasesInSwitch": true, // 报告 switch 语句的 fallthrough 错误(即,不允许 switch 的 case 语句贯穿)
/** 模块解析选项 */
"moduleResolution": "node", // 指定模块解析策略 'node' 'classic'
"baseUrl": "./", // 用来控制模块解析的基目录
"paths": {}, // 指定模块名到基于 baseUrl 的路径映射的列表
"rootDirs": [], // 根文件夹列表,其组合内容表示项目运行时的结构内容
"typeRoots": [], // 包含类型声明的文件列表
"types": [], // 需要包含的类型声明文件名列表
"allowSyntheticDefaultImports": true, // 允许从没有设置默认导出的模块中默认导入。这并不影响代码的 emit,只是用来提供类型检查。
/** Source Map 选项 */
"sourceRoot": "./", // 指定调试器应该找到 TypeScript 文件而不是源文件的位置
"mapRoot": "./", // 指定调试器应该找到映射文件而不是生成文件的位置
"inlineSourceMap": true, // 生成单个 sourceMap 文件,而不是将 sourcemap 生成不同的文件
"inlineSources": true, // 将代码与 sourceMap 生成到一个文件中,要求同时设置了 --inlineSourceMap 或 --sourceMap 属性
/** 其他选项 */
"experimentalDecorators": true, // 启用装饰器
"emitDecoratorMetadata": true, // 为装饰器提供元数据的支持
}
}