Skip to content
— 前端

一些tsconfig配置项

tsconfig.json 是 TypeScript 项目的配置文件,放在项目的根目录。反过来说,如果一个目录里面有 tsconfig.json,TypeScript 就认为这是项目的根目录。

如果项目源码是 JavaScript,但是想用 TypeScript 处理,那么配置文件的名字是 jsconfig.json,它跟 tsconfig 的写法是一样的。

tsconfig.json 文件主要供 tsc 编译器使用,它的命令行参数 --project-p 可以指定 tsconfig.json 的位置(目录或文件皆可)。

bash
$ tsc -p ./dir

如果不指定配置文件的位置,tsc 就会在当前目录下搜索 tsconfig.json 文件,如果不存在,就到上一级目录搜索,直到找到为止。

监听模式(--watch

开发时可以使用监听模式,当文件变化时自动重新编译。

bash
# 监听当前项目
$ tsc --watch

# 或简写
$ tsc -w

配合项目引用使用:

bash
# 监听所有引用的项目
$ tsc -b --watch

tsconfig.json 文件的格式,是一个 JSON 对象,最简单的情况可以只放置一个空对象 {}。下面是一个示例。

json
{
  "compilerOptions": {
    "outDir": "./built",
    "allowJs": true,
    "target": "es5"
  },
  "include": ["./src/**/*"]
}

本章后面会详细介绍 tsconfig.json 的各个属性,这里简单说一下,上面示例的四个属性的含义。

  • include:指定哪些文件需要编译。
  • allowJs:允许编译 JavaScript 文件,进行类型检查并转换输出到编译目录。
  • outDir:指定编译产物存放的目录。
  • target:指定编译产物的 JS 版本。

tsconfig.json 文件可以不必手写,使用 tsc 命令的 --init 参数自动生成。

bash
$ tsc --init

上面命令生成的 tsconfig.json 文件,里面会有一些默认配置。

你也可以使用别人预先写好的 tsconfig.json 文件,npm 的 @tsconfig 名称空间下面有很多模块,都是写好的 tsconfig.json 样本,比如 @tsconfig/recommended@tsconfig/node16

这些模块需要安装,以 @tsconfig/deno 为例。

bash
$ npm install --save-dev @tsconfig/deno
# 或者
$ yarn add --dev @tsconfig/deno

安装以后,就可以在 tsconfig.json 里面引用这个模块,相当于继承它的设置,然后进行扩展。

json
{
  "extends": "@tsconfig/deno/tsconfig.json"
}

@tsconfig 空间下包含的完整 tsconfig 文件目录,可以查看 GitHub

tsconfig.json 的一级属性并不多,只有很少几个,但是 compilerOptions 属性有很多二级属性。下面先逐一介绍一级属性,然后再介绍 compilerOptions 的二级属性,按照首字母排序。

exclude

exclude 属性是一个数组,用来从编译列表中去除指定的文件。它也支持使用与 include 属性相同的通配符。

json
{
  "include": ["**/*"],
  "exclude": ["**/*.spec.ts"]
}

extends

tsconfig.json 可以继承另一个 tsconfig.json 文件的配置。如果一个项目有多个配置,可以把共同的配置写成 tsconfig.base.json,其他的配置文件继承该文件,这样便于维护和修改。

extends 属性用来指定所要继承的配置文件。它可以是本地文件。

json
{
  "extends": "../tsconfig.base.json"
}

如果 extends 属性指定的路径不是以 ./../ 开头,那么编译器将在 node_modules 目录下查找指定的配置文件。

extends 属性也可以继承已发布的 npm 模块里面的 tsconfig 文件。

json
{
  "extends": "@tsconfig/node12/tsconfig.json"
}

extends 指定的 tsconfig.json 会先加载,然后加载当前的 tsconfig.json。如果两者有重名的属性,后者会覆盖前者。

多继承(TS 5.0+)

extends 在 TypeScript 5.0+ 起支持数组,用于同时继承多个基础配置。后写的覆盖先写的:

json
{ "extends": ["./tsconfig.base.json", "./tsconfig.strict.json"] }

files

files 属性指定编译的文件列表,如果其中有一个文件不存在,就会报错。

它是一个数组,排在前面的文件先编译。

json
{
  "files": ["a.ts", "b.ts"]
}

该属性必须逐一列出文件,不支持文件匹配。如果文件较多,建议使用 includeexclude 属性。

include

include 属性指定所要编译的文件列表,既支持逐一列出文件,也支持通配符。文件位置相对于当前配置文件而定。

json
{
  "include": ["src/**/*", "tests/**/*"]
}

include 属性支持三种通配符:

  • ?:指代单个字符
  • *:指代任意字符,不含路径分隔符
  • **:指定任意目录层级。

如果不指定文件后缀名,默认包括 .ts.tsx.d.ts 文件。如果打开 allowJs,那么还包括 .js.jsx

references

references 属性是一个数组,数组成员为对象,适合一个大项目由许多小项目构成的情况,用来设置需要引用的底层项目。

json
{
  "references": [
    { "path": "../pkg1" },
    { "path": "../pkg2/tsconfig.json" }
  ]
}

references 数组成员对象的 path 属性,既可以是含有文件 tsconfig.json 的目录,也可以直接是该文件。

与此同时,引用的底层项目的 tsconfig.json 必须启用 composite 属性。

json
{
  "compilerOptions": {
    "composite": true
  }
}

项目引用构建模式(tsc -b

使用项目引用时,可以使用 tsc -b 命令来构建所有引用的项目,TypeScript 会自动按依赖顺序构建。

bash
# 构建所有引用的项目
$ tsc -b

# 监听模式(文件变化时自动重新构建)
$ tsc -b --watch

# 清除构建输出
$ tsc -b --clean

# 强制完整重新构建
$ tsc -b --force

# 干运行(显示将要构建的项目,但不实际构建)
$ tsc -b --dry

构建模式会自动检查项目之间的依赖关系,确保底层项目先于上层项目构建。配合 incremental 选项,还可以实现增量编译,只重新构建发生变化的部分。

compilerOptions

compilerOptions 属性用来定制编译行为。这个属性可以省略,这时编译器将使用默认设置。

主题速查(点击跳到对应小节)

主题分组包含的常用选项
模块与解析module · moduleResolution · moduleDetection · baseUrl · paths · rootDir · rootDirs · resolveJsonModule · customConditions · allowImportingTsExtensions · rewriteRelativeImportExtensions · verbatimModuleSyntax
类型检查noImplicitAny · noImplicitThis · noPropertyAccessFromIndexSignature · noUncheckedIndexedAccess · exactOptionalPropertyTypes
严格模式strict · strictBindCallApply · strictFunctionTypes · strictNullChecks · strictPropertyInitialization · alwaysStrict · useUnknownInCatchVariables · forceConsistentCasingInFileNames
代码生成target · outDir · outFile · removeComments · importHelpers · downlevelIteration · noEmit
JSX / 库jsx · jsxFactory · jsxFragmentFactory · jsxImportSource · lib
Source Map / 调试sourceMap · inlineSourceMap · inlineSources · mapRoot · sourceRoot · declarationMap
声明文件declaration · declarationDir · emitDeclarationOnly · isolatedDeclarations
互操作esModuleInterop · allowSyntheticDefaultImports
构建优化incremental · tsBuildInfoFile · skipLibCheck · skipDefaultLibCheck

部分选项可同时归入多个分组(如 useUnknownInCatchVariables 既是类型检查也是 strict 家族),此处按"主要入口"归类,避免重复。未链接的项表示当前文档尚未涵盖。

allowImportingTsExtensions (TS 5.0+)

allowImportingTsExtensions 允许直接导入 TypeScript 文件(使用 .ts.tsx.mts.cts 扩展名)。

使用该选项时必须同时启用 noEmitemitDeclarationOnly,且 moduleResolution 必须设置为 "bundler""node16""nodenext",因为运行时不支持直接导入 TypeScript 文件。

json
{
  "compilerOptions": {
    "allowImportingTsExtensions": true,
    "noEmit": true,
    "moduleResolution": "bundler"
  }
}
typescript
import { Component } from './Component.tsx'
// 启用后可以直接这样导入
import { myFunction } from './my-module.ts'

allowJs

allowJs 允许 TypeScript 项目加载 JS 脚本。编译时,也会将 JS 文件,一起拷贝到输出目录。

json
{
  "compilerOptions": {
    "allowJs": true
  }
}

alwaysStrict

alwaysStrict 确保脚本以 ECMAScript 严格模式进行解析,因此脚本头部不用写 "use strict"。它的值是一个布尔值,默认值为 false,但当 strict 选项启用时默认为 true

allowSyntheticDefaultImports

allowSyntheticDefaultImports 允许 import 命令默认加载没有 default 输出的模块。

比如,打开这个设置,就可以写 import React from "react";,而不是 import * as React from "react";

此选项仅影响类型检查时的行为,不改变编译输出。若需运行时也提供兼容辅助函数,请使用 esModuleInterop

allowUnreachableCode

allowUnreachableCode 设置是否允许存在不可能执行到的代码。它的值有三种可能。

  • undefined:默认值,编辑器显示警告。
  • true:忽略不可能执行到的代码。
  • false:编译器报错。

allowUnusedLabels

allowUnusedLabels 设置是否允许存在没有用到的代码标签(label)。它的值有三种可能。

  • undefined:默认值,编辑器显示警告。
  • true:忽略没有用到的代码标签。
  • false:编译器报错。

baseUrl

baseUrl 的值为字符串,指定 TypeScript 项目的基准目录。

由于默认是以 tsconfig.json 的位置作为基准目录,所以一般情况不需要使用该属性。

json
{
  "compilerOptions": {
    "baseUrl": "./"
  }
}

上面示例中,baseUrl 为当前目录 ./。那么,当遇到下面的语句,TypeScript 将以 ./ 为起点,寻找 hello/world.ts

typescript
import { helloWorld } from 'hello/world'

checkJs

checkJs 设置对 JS 文件同样进行类型检查。打开这个属性,也会自动打开 allowJs。它等同于在 JS 脚本的头部添加 // @ts-check 命令。

json
{
  "compilerOptions": {
    "checkJs": true
  }
}

composite (TS 3.0+)

composite 启用项目引用所需的前置约束,是 references 构建模式的基础。设为 true 后,TypeScript 会自动启用 declarationdeclarationMap(若未显式设置),并限制部分可能影响增量编译的选项。

json
{
  "compilerOptions": {
    "composite": true
  }
}

典型用于 monorepo 中的子包:每个子包开启 composite,顶层 tsconfig.json 通过 references 引用它们,即可使用 tsc -b 按依赖顺序增量构建。配合 incrementaltsBuildInfoFile 可进一步加速编译。

customConditions (TS 5.0+)

customConditionspackage.jsonexports 字段提供自定义解析条件,仅在 moduleResolution"node16""nodenext""bundler" 时生效。若未正确设置 moduleResolution,此选项会被静默忽略,是常见的配置误区。

json
{
  "compilerOptions": {
    "moduleResolution": "bundler",
    "customConditions": ["development"]
  }
}

常用于 monorepo 或库开发:在 exports 中定义 "development""production" 两种条件入口,TypeScript 会按数组顺序依次匹配。若未设置,默认只解析 "types""default" 等标准条件,无法命中自定义分支。

declaration

declaration 设置编译时是否为每个脚本生成类型声明文件 .d.ts

json
{
  "compilerOptions": {
    "declaration": true
  }
}

declarationDir

declarationDir 设置生成的 .d.ts 文件所在的目录。

json
{
  "compilerOptions": {
    "declaration": true,
    "declarationDir": "./types"
  }
}

declarationMap

declarationMap 设置生成 .d.ts 类型声明文件的同时,还会生成对应的 Source Map 文件。

json
{
  "compilerOptions": {
    "declaration": true,
    "declarationMap": true
  }
}

emitBOM

emitBOM 设置是否在编译结果的文件头添加字节顺序标志 BOM,默认值是 false

emitDeclarationOnly

emitDeclarationOnly 设置编译后只生成 .d.ts 文件,不生成 .js 文件。

emitDecoratorMetadata (TS 1.5+)

emitDecoratorMetadata 在装饰器位置自动注入 Reflect.metadata("design:type", ...) 等元数据,使运行时能够反射参数、返回值与属性的原始类型信息。需与 experimentalDecorators 同时开启,否则无效果。

json
{
  "compilerOptions": {
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true
  }
}

NestJS、TypeORM、typedi 等框架依赖此选项在运行时推断依赖类型,实现自动注入。注意:该选项只对旧版 experimentalDecorators 有效,与 TS 5.0+ 默认启用的 Stage-3 新装饰器无关。

esModuleInterop

esModuleInterop 修复了一些 CommonJS 和 ES6 模块之间的兼容性问题。

默认值为 false。打开这个属性,使用 import 命令加载 CommonJS 模块时,TypeScript 会严格检查兼容性问题是否存在。

typescript
import * as moment from 'moment'

moment() // 报错

上面示例中,根据 ES6 规范,import * as moment 里面的 moment 是一个对象,不能当作函数调用,所以第二行报错了。

解决方法就是改写上面的语句,改成加载默认接口。

typescript
import moment from 'moment'

moment() // 不报错

打开 esModuleInterop 以后,如果将上面的代码编译成 CommonJS 模块格式,就会加入一些辅助函数,保证编译后的代码行为正确。

注意,打开 esModuleInterop,将自动打开 allowSyntheticDefaultImports

exactOptionalPropertyTypes

exactOptionalPropertyTypes 设置可选属性不能赋值为 undefined

typescript
// 打开 exactOptionalPropertyTypes
interface MyObj {
  foo?: 'A' | 'B'
}

const obj: MyObj = { foo: 'A' }

obj.foo = undefined // 报错

上面示例中,foo 是可选属性,打开 exactOptionalPropertyTypes 以后,该属性就不能显式赋值为 undefined

experimentalDecorators (TS 1.5+)

experimentalDecorators 启用旧版 TC39 Stage-2 装饰器语法(@decorator 形式)。当前仍广泛存在于 NestJS、TypeORM、Angular 等老代码库中。

json
{
  "compilerOptions": {
    "experimentalDecorators": true
  }
}

TS 5.0+ 引入的 Stage-3 新装饰器默认启用,二者不能在同一文件中混用。 若项目依赖旧版装饰器生态,需显式开启此选项;新项目建议评估是否迁移到新装饰器标准。

forceConsistentCasingInFileNames

forceConsistentCasingInFileNames 设置文件名是否为大小写敏感,默认值为 false

incremental (TS 3.4+)

incremental 缓存上次编译的类型信息与输出状态,使后续构建只处理变更文件,显著加速大型项目编译。

json
{
  "compilerOptions": {
    "incremental": true
  }
}

默认会在 <outDir> 下生成 .tsbuildinfo,或在 tsconfig.json 同级目录生成 <configBaseName>.tsbuildinfo。可通过 tsBuildInfoFile 自定义路径。与 composite 配合使用时,项目引用模式(tsc -b)会自动利用该缓存实现增量构建。

inlineSourceMap

inlineSourceMap 设置将 SourceMap 文件写入编译后的 JS 文件中,否则会单独生成一个 .js.map 文件。

inlineSources

inlineSources 设置将原始的 .ts 代码嵌入编译后的 JS 中。

它要求 sourceMapinlineSourceMap 至少打开一个。

isolatedDeclarations (TS 5.5+)

isolatedDeclarations 要求所有导出符号必须带有显式类型注解,使每个文件可以独立生成 .d.ts 声明,无需解析其他文件的类型信息。

json
{
  "compilerOptions": {
    "isolatedDeclarations": true
  }
}

适合大型库或 monorepo 场景:配合 declaration 可显著加速声明文件生成,因为编译器不必跨文件推导类型。默认关闭,开启后未标注类型的导出会直接报错。

typescript
// 报错:缺少显式类型注解
export const add = (a, b) => a + b

// 正确
export const add = (a: number, b: number): number => a + b

isolatedModules

isolatedModules 设置如果当前 TypeScript 脚本作为单个模块编译,是否会因为缺少其他脚本的类型信息而报错,主要便于非官方的编译工具(比如 Babel)正确编译单个脚本。

jsx

jsx 设置如何处理 .tsx 文件。它可以取以下值:

取值含义适用场景起始版本
preserve保持 JSX 语法不变,.tsx 文件输出为 .jsx交给后续工具(Babel、esbuild 等)处理 JSX≤2.0
react<div /> 编译成 React.createElement("div"),输出文件为 .jsReact 16 及更早的经典转换≤2.0
react-native保持 JSX 语法不变,输出文件后缀为 .jsReact Native 项目≤2.0
react-jsxReact 17+ 新 JSX 转换,自动从 react/jsx-runtime 导入现代 React 生产构建4.1+
react-jsxdev开发模式下的新 JSX 转换,附带额外调试信息现代 React 开发构建4.1+
json
{
  "compilerOptions": {
    "jsx": "preserve"
  }
}

lib

lib 值是一个数组,描述项目需要加载的 TypeScript 内置类型描述文件,跟三斜线指令 /// <reference lib="" /> 作用相同。

json
{
  "compilerOptions": {
    "lib": ["dom", "es2021"]
  }
}

TypeScript 内置的类型描述文件,主要有以下一些,完整的清单可以参考 TypeScript 源码

取值含义适用场景
ES2015 ~ ESNext各 ES 版本核心 libtarget 对应,或显式选择
DOM浏览器 DOM前端 web 项目
WebWorkerWeb Worker 环境Worker 内代码
ScriptHost旧版 IE 等 ScriptHost罕见

listEmittedFiles

listEmittedFiles 设置编译时在终端显示,生成了哪些文件。

json
{
  "compilerOptions": {
    "listEmittedFiles": true
  }
}

listFiles

listFiles 设置编译时在终端显示,参与本次编译的文件列表。

json
{
  "compilerOptions": {
    "listFiles": true
  }
}

mapRoot

mapRoot 指定 SourceMap 文件的位置,而不是默认的生成位置。

json
{
  "compilerOptions": {
    "sourceMap": true,
    "mapRoot": "https://my-website.com/debug/sourcemaps/"
  }
}

module

module 指定编译产物的模块格式。它的默认值与 target 属性有关,如果 targetES3ES5,默认值为 commonjs;如果 targetES2015 或更高版本,默认值为 target 的值(如 ES2020);其他情况下默认为 ES6/ES2015

json
{
  "compilerOptions": {
    "module": "commonjs"
  }
}

它可以取以下值:

取值含义适用场景起始版本
none不输出模块单文件脚本≤2.0
commonjsCommonJS(require / module.exports传统 Node.js≤2.0
amdAMD(define / requireRequireJS 等老前端方案≤2.0
umdUMD(自适应 AMD/CommonJS)兼容多种环境的 lib≤2.0
systemSystemJSSystemJS loader≤2.0
es2015 ~ esnextES Modules(import / export现代 ES Module 工具链2.0+
node16 / nodenextNode.js 原生 ESM(条件取决于 package.json#typeNode.js 16+ ESM 项目4.7+
preserve不转换 import,交给打包工具与 esbuild / webpack / Vite 配合5.4+

moduleResolution

moduleResolution 确定模块路径的算法,即如何查找模块。它可以取以下值:

取值含义适用场景起始版本
classicTypeScript 1.6 之前的算法新项目不建议使用≤2.0
nodeNode.js 的 CommonJS 模块算法传统 Node.js / CommonJS 项目≤2.0
node10node 的别名(TS 5.0 后的命名)node5.0+
node16Node.js 的 ECMAScript 模块算法Node.js 16+ ESM 项目4.7+
nodenext跟随 Node.js 最新 ESM 规则紧跟 Node.js 最新版本4.7+
bundler专为现代打包工具(Vite / esbuild / swc 等)设计,支持 package.jsonexports / imports 字段配合打包器使用5.0+

它的默认值与 module 属性有关,如果 modulenode16,默认值为 node16;如果 modulenodenext,默认值为 nodenext;如果 moduleAMDUMDSystem,默认值为 classic;其他情况下,默认值为 node

moduleSuffixes

moduleSuffixes 指定模块的后缀名。

json
{
  "compilerOptions": {
    "moduleSuffixes": [".ios", ".native", ""]
  }
}

上面的设置使得 TypeScript 对于语句 import * as foo from "./foo";,会搜索以下脚本 ./foo.ios.ts./foo.native.ts./foo.ts

moduleDetection (TS 4.7+)

moduleDetection 控制 TypeScript 如何确定一个文件是模块(ES module)还是脚本(Script)。

说明
"auto"(默认)自动检测:查找 import/export 语句,对于 node16/nodenext 还会检查 package.json"type": "module"
"legacy"TypeScript 4.7 之前的行为:仅使用 import/export 语句判断
"force"将所有非声明文件(.d.ts)都视为模块
json
{
  "compilerOptions": {
    "moduleDetection": "force"
  }
}

newLine

newLine 设置换行符为 CRLF(Windows)还是 LF(Linux)。

noEmit

noEmit 设置是否产生编译结果。如果不生成,TypeScript 编译就纯粹作为类型检查了。

noEmitHelpers

noEmitHelpers 设置在编译结果文件不插入 TypeScript 辅助函数,而是通过外部引入辅助函数来解决,比如 NPM 模块 tslib

noEmitOnError

noEmitOnError 指定一旦编译报错,就不生成编译产物,默认为 false

noFallthroughCasesInSwitch

noFallthroughCasesInSwitch 设置是否对没有 break 语句(或者 returnthrow 语句)的 switch 分支报错,即 case 代码里面必须有终结语句(比如 break)。

noImplicitAny

noImplicitAny 设置当一个表达式没有明确的类型描述、且编译器无法推断出具体类型时,是否允许将它推断为 any 类型。

它是一个布尔值,默认值为 false,但当 strict 选项启用时默认为 true。开启后,只要推断出 any 类型就报错。

noPropertyAccessFromIndexSignature (TS 4.2+)

noPropertyAccessFromIndexSignature 强制对索引签名使用方括号访问语法(obj["key"])。

typescript
interface Options {
  [key: string]: string
}

const opts: Options = { port: '3000' }

// 启用 noPropertyAccessFromIndexSignature: true 后
opts.port // 报错:必须使用 opts["port"]
// eslint-disable-next-line dot-notation
opts['port'] // 正确

noUncheckedIndexedAccess (TS 4.1+)

noUncheckedIndexedAccess 在通过索引签名访问属性时,自动将返回类型添加 undefined

这使数组和对象索引访问更加安全。

typescript
// 启用 noUncheckedIndexedAccess: true
interface ArrayLike {
  [index: number]: string
}

const arr: ArrayLike = { 0: 'hello' }
const value = arr[0] // 类型: string | undefined

// 需要显式检查
if (value !== undefined) {
  // eslint-disable-next-line no-console
  console.log(value.toUpperCase())
}

noImplicitReturns

noImplicitReturns 设置是否要求函数的所有代码路径都必须返回一个值。即使函数中有 return 语句,但如果存在某个分支没有返回值,编译器也会报错。

noImplicitThis

noImplicitThis 设置如果 this 被推断为 any 类型是否报错。

noUnusedLocals

noUnusedLocals 设置是否允许未使用的局部变量。

noUnusedParameters

noUnusedParameters 设置是否允许未使用的函数参数。

outDir

outDir 指定编译产物的存放目录。如果不指定,编译出来的 .js 文件存放在对应的 .ts 文件的相同位置。

outFile

outFile 设置将所有非模块的全局文件,编译在同一个文件里面。它只有在 module 属性为 nonesystemamd 时才生效,并且不能用来打包 CommonJS 或 ES6 模块。

paths

paths 设置模块名和模块路径的映射,也就是 TypeScript 如何处理 importrequire 语句加载的模块。

paths 基于 baseUrl 进行加载,所以必须同时设置后者。

json
{
  "compilerOptions": {
    "baseUrl": "./",
    "paths": {
      "b": ["bar/b"]
    }
  }
}

它还可以使用通配符 *

json
{
  "compilerOptions": {
    "baseUrl": "./",
    "paths": {
      "@bar/*": ["bar/*"]
    }
  }
}

preserveConstEnums

preserveConstEnumsconst enum 结构保留下来,不替换成常量值。

json
{
  "compilerOptions": {
    "preserveConstEnums": true
  }
}

pretty

pretty 设置美化输出终端的编译信息,默认为 true

removeComments

removeComments 移除 TypeScript 脚本里面的注释,默认为 false

resolveJsonModule

resolveJsonModule 允许 import 命令导入 JSON 文件。

rewriteRelativeImportExtensions (TS 5.7+)

rewriteRelativeImportExtensions 将相对路径导入中的 TypeScript 扩展名(.ts.tsx.mts.cts)重写为对应的 JavaScript 扩展名(.js.jsx.mjs.cjs)。

json
{
  "compilerOptions": {
    "rewriteRelativeImportExtensions": true
  }
}
typescript
// 输出 JavaScript
import * as foo from './foo.js'

// 输入 TypeScript
import * as foo from './foo.ts'

此选项适用于希望使用显式 .ts 扩展名导入(配合 allowImportingTsExtensions),但需要在编译后转换为 .js 扩展名的场景。

rootDir

rootDir 设置源码脚本所在的目录,主要跟编译后的脚本结构有关。rootDir 对应目录下的所有脚本,会成为输出目录里面的顶层脚本。

rootDirs

rootDirs 把多个不同目录,合并成一个虚拟目录,便于模块定位。

json
{
  "compilerOptions": {
    "rootDirs": ["bar", "foo"]
  }
}

上面示例中,rootDirsbarfoo 组成一个虚拟目录。

skipLibCheck (TS 2.0+)

skipLibCheck 跳过对所有 .d.ts 声明文件的类型检查,只保证它们能被正确解析。实战中几乎所有项目模板都默认开启,可显著减少因第三方库类型定义冲突导致的编译错误。

json
{
  "compilerOptions": {
    "skipLibCheck": true
  }
}

skipDefaultLibCheck(仅跳过内置 lib 声明)不同,skipLibCheck 作用于全部 .d.ts。建议在开发阶段开启以提升编译速度;若需要严格审查依赖类型(如发布公共库),可考虑关闭。

sourceMap

sourceMap 设置编译时是否生成 SourceMap 文件。

sourceRoot

sourceRoot 在 SourceMap 里面设置 TypeScript 源文件的位置。

json
{
  "compilerOptions": {
    "sourceMap": true,
    "sourceRoot": "https://my-website.com/debug/source/"
  }
}

strict

strict 用来打开 TypeScript 的严格检查。它的值是一个布尔值,默认是关闭的。

json
{
  "compilerOptions": {
    "strict": true
  }
}

这个设置相当于同时打开以下的一系列设置。

  • alwaysStrict
  • strictNullChecks
  • strictBindCallApply
  • strictFunctionTypes
  • strictPropertyInitialization
  • noImplicitAny
  • noImplicitThis
  • useUnknownInCatchVariables

打开 strict 的时候,允许单独关闭其中一项。

json
{
  "compilerOptions": {
    "strict": true,
    "alwaysStrict": false
  }
}

strictBindCallApply

strictBindCallApply 设置是否对函数的 call()bind()apply() 这三个方法进行类型检查。

如果不打开 strictBindCallApply 编译选项,编译器不会对这三个方法进行类型检查,参数类型都是 any,传入任何参数都不会产生编译错误。

typescript
function fn(x: string) {
  return Number.parseInt(x)
}

// strictBindCallApply:false
// eslint-disable-next-line no-useless-call
const n = fn.call(undefined, false)
// 以上不报错

strictFunctionTypes

strictFunctionTypes 允许对函数更严格的参数检查。具体来说,函数参数类型在赋值时遵循逆变(contravariant)规则:不能将参数类型更窄的函数赋值给参数类型更宽的函数类型。

typescript
function fn(x: string) {
  // eslint-disable-next-line no-console
  console.log(`Hello, ${x.toLowerCase()}`)
}

type StringOrNumberFunc = (ns: string | number) => void

// 打开 strictFunctionTypes,下面代码会报错
const func: StringOrNumberFunc = fn

上面示例中,函数 fn() 的参数是 StringOrNumberFunc 参数的子集,因此 fn 不能替代 StringOrNumberFunc

strictNullChecks

strictNullChecks 设置对 nullundefined 进行严格类型检查。如果打开 strict 属性,这一项就会自动设为 true,否则为 false

typescript
// strictNullChecks:false
// 下面语句不报错
const value: string = null

它可以理解成只要打开,就需要显式检查 nullundefined

typescript
function doSomething(x: string | null) {
  if (x === null) {
    // do nothing
  }
  else {
    // eslint-disable-next-line no-console
    console.log(`Hello, ${x.toUpperCase()}`)
  }
}

strictPropertyInitialization

strictPropertyInitialization 设置类的实例属性都必须初始化,包括以下几种情况。

  • 设为 undefined 类型
  • 显式初始化
  • 构造函数中赋值

注意,使用该属性的同时,必须打开 strictNullChecks

typescript
// strictPropertyInitialization: true
class User {
  // 报错,属性 username 没有初始化
  username: string
}

// 解决方法一
class User {
  username = '张三'
}

// 解决方法二
class User {
  username: string | undefined
}

// 解决方法三
class User {
  username: string

  constructor(username: string) {
    this.username = username
  }
}
// 或者
class User {
  constructor(public username: string) {}
}

// 解决方法四:赋值断言
class User {
  username!: string

  constructor(username: string) {
    this.initialize(username)
  }

  private initialize(username: string) {
    this.username = username
  }
}

verbatimModuleSyntax (TS 5.0+)

verbatimModuleSyntax 简化模块导入的处理逻辑,确保类型导入在编译时被完全擦除,非类型导入则被保留。

启用此选项后,使用 type 修饰符的导入会被完全移除,不带 type 修饰符的导入会被保留。这取代了已废弃的 importsNotUsedAsValuespreserveValueImports 选项。

json
{
  "compilerOptions": {
    "verbatimModuleSyntax": true
  }
}
typescript
/* eslint-disable import/consistent-type-specifier-style, perfectionist/sort-named-imports */
// 编译前
import type { A } from 'a' // 完全擦除
import { type c, type d, b } from 'bcd' // 擦除类型部分,保留为 import { b } from 'bcd'
import * as React from 'react' // 保留

// 使用 type 修饰符的导出也会被擦除
export type { SomeType } from './types'

isolatedModules 一起使用时,此选项可确保每个文件可以独立编译,无需知道其他文件的类型信息。

类型导入语法(import type

TypeScript 3.8+ 引入了类型导入语法,允许显式标记仅用于类型的导入。结合 verbatimModuleSyntax,这可以确保类型在编译时被正确擦除。

TypeScript 3.8+ 语法:

typescript
/* eslint-disable import/no-duplicates, import/consistent-type-specifier-style, ts/no-import-type-side-effects */
// 1. 传统 import type(整条语句仅用于类型,完全从输出中移除)
import type { SomeType } from './module'

// 2. 内联类型导入(TS 4.5+):同一条 import 中混合值与类型
import { regularValue, type SomeType } from './module'

// 3. 全部内联(TS 4.5+):全是类型,但用 type 关键字标注每个
import { type AnotherType, type SomeType } from './module'

// 类型专用导出
export type { MyInterface } from './module'

使用 import type 的好处:

  • 明确标识哪些导入仅用于类型检查
  • 避免循环依赖问题
  • verbatimModuleSyntax 配合,确保正确的代码生成

suppressExcessPropertyErrors

suppressExcessPropertyErrors 关闭对象字面量的多余参数的报错。

target

target 指定编译出来的 JavaScript 代码的 ECMAScript 版本,比如 es2021,默认是 es3

它可以取以下值:

取值含义适用场景起始版本
es3ES3,无 let / const / 箭头函数兼容极老旧浏览器(IE6 等)≤2.0
es5引入严格模式、Object.definePropertyIE9+ 及老旧环境≤2.0
es6 / es2015引入 classlet / const、箭头函数、Promise、模板字符串、解构现代主流浏览器最低基线≤2.0
es2016引入 ** 指数运算符、Array.prototype.includes≤2.0
es2017引入 async / awaitObject.entries / values主流浏览器全面支持 async≤2.0
es2018引入对象 rest/spread、异步迭代器、Promise.finally≤2.0
es2019引入 Array.flat / flatMapObject.fromEntries≤2.0
es2020引入可选链 ?.、空值合并 ??BigIntPromise.allSettled、动态 import()Node 14+ / 现代浏览器≤2.0
es2021引入逻辑赋值 ??= / &&= / ||=String.replaceAllPromise.any≤2.0
es2022引入 class field(#private)、top-level awaitObject.hasOwnError.causeNode 18+ / 现代浏览器4.6+
es2023引入 Array.findLast / findLastIndex5.5+
es2024引入 Object.groupByPromise.withResolvers5.7+
esnext跟随最新 stage-4 提案,取值随 TS 版本浮动工具链能即时跟进时使用≤2.0

注意,如果编译的目标版本过老,比如 "target": "es3",有些语法可能无法编译,tsc 命令会报错。

traceResolution

traceResolution 设置编译时,在终端输出模块解析的具体步骤。

json
{
  "compilerOptions": {
    "traceResolution": true
  }
}

tsBuildInfoFile (TS 3.4+)

tsBuildInfoFile 指定增量编译信息文件(.tsbuildinfo)的输出路径,仅在 incrementalcompositetrue 时生效。

json
{
  "compilerOptions": {
    "incremental": true,
    "tsBuildInfoFile": "./.cache/tsconfig.tsbuildinfo"
  }
}

默认路径取决于 outDir 或配置文件位置。显式设置此选项可将缓存文件移出源码目录,保持项目整洁。与 incrementalcomposite 配合使用,是大型 monorepo 构建提速的常见配置。

typeRoots

typeRoots 设置类型模块所在的目录,默认是 node_modules/@types

json
{
  "compilerOptions": {
    "typeRoots": ["./typings", "./vendor/types"]
  }
}

types

types 设置 typeRoots 目录下需要包括在编译之中的类型模块。默认情况下,该目录下的所有类型模块,都会自动包括在编译之中。

json
{
  "compilerOptions": {
    "types": ["node", "jest", "express"]
  }
}

useDefineForClassFields (TS 3.7+)

useDefineForClassFields 控制类字段是按 ES2022 Object.defineProperty 语义生成,还是按 TypeScript 旧版的赋值语义生成。TS 4.7+ 起当 target"ES2022" 或更高时默认开启。

json
{
  "compilerOptions": {
    "useDefineForClassFields": true
  }
}

两种语义在继承场景下行为不同,尤其当父类定义了 setter 时:

typescript
class Parent {
  _x = 0
  set x(v: number) {
    this._x = v + 100 // setter 对值做转换
  }

  get x(): number {
    return this._x
  }
}

class Child extends Parent {
  x = 2
}

// useDefineForClassFields: true(Define 语义)
// 编译后: super(); Object.defineProperty(this, 'x', {value: 2})
// 子类字段直接定义在实例上,不调用 Parent setter
// 结果: new Child().x === 2(但 this._x 保持为 0)

// useDefineForClassFields: false(旧版赋值语义)
// 编译后: super(); this.x = 2;
// this.x = 2 调用 Parent setter → this._x = 102
// 结果: new Child().x === 102

迁移旧项目到 "target": "ES2022" 时,若出现运行时行为异常,应检查此选项。

useUnknownInCatchVariables

useUnknownInCatchVariables 设置 catch 语句捕获的 try 抛出的返回值类型,从 any 变成 unknown。从 TypeScript 5.0 开始,此选项默认启用。

typescript
try {
  someExternalFunction()
}
catch (err) {
  err // 类型 any
}

如果关闭 useUnknownInCatchVariablescatch 语句的参数 err 类型是 any,即可以是任何值。

从 TypeScript 5.0 开始此选项默认启用,err 的类型为 unknown。使用 err 之前,必须缩小它的类型,否则会报错。

typescript
try {
  someExternalFunction()
}
catch (err) {
  if (err instanceof Error) {
    // eslint-disable-next-line no-console
    console.log(err.message)
  }
}

Last updated:

comments

冲吧,向那太阳,向那片海