当前位置:首页 > 家装 > 装修设计 > 文章正文

[译] TSConfig 设备文件速查表

编辑:[db:作者] 时间:2024-08-25 08:07:33

tsconfig.json scares everyone. It's a huge file with a TON of potential options. tsconfig.json 对付许多人来说可能有些吓人。

[译] TSConfig 设备文件速查表

它是一个包含大量潜在选项的弘大文件。

But really, there are only a few configuration options you need to care about. Let's figure them out, and cheatsheet them. 但实际上,只有少数几个配置选项是你须要关心的。
让我们找出它们,并创建一个速查表。

Quickstart 快速开始

Want just the code? Here you go:只想要代码?请看下面:

{ "compilerOptions": { / Base Options: / / 基本选项: / "esModuleInterop": true, "skipLibCheck": true, "target": "es2022", "verbatimModuleSyntax": true, "allowJs": true, "resolveJsonModule": true, "moduleDetection": "force", / Strictness / / 严格性: / "strict": true, "noUncheckedIndexedAccess": true, / If transpiling with TypeScript: / / 如果利用 TypeScript 进行转译: / "moduleResolution": "NodeNext", "module": "NodeNext", / If NOT transpiling with TypeScript: / / 如果不该用 TypeScript 进行转译: / "moduleResolution": "Bundler", "module": "ESNext", "noEmit": true, / If your code runs in the DOM: / / 如果代码在 DOM 中运行: / "lib": ["es2022", "dom", "dom.iterable"], / If your code doesn't run in the DOM: / / 如果代码不在 DOM 中运行: / "lib": ["es2022"], / If you're building for a library: / / 如果你正在构建一个库: / "declaration": true, / If you're building for a library in a monorepo: / / 如果你正在构建一个位于单体库中的库: / "composite": true, "sourceMap": true, "declarationMap": true }}Full Explanation 完全阐明Base Options 基本选项

Here are the base options I recommend for all projects.这里是我建议所有项目利用的基本选项。

{ "compilerOptions": { "esModuleInterop": true, "skipLibCheck": true, "target": "es2022", "verbatimModuleSyntax": true, "allowJs": true, "resolveJsonModule": true, "moduleDetection": "force" }}esModuleInterop: Helps mend a few of the fences between CommonJS and ES Modules.esModuleInterop:有助于修复 CommonJS 和 ES Modules 之间的一些问题。
skipLibCheck: Skips checking the types of .d.ts files. This is important for performance, because otherwise all node_modules will be checked.skipLibCheck:跳过对 .d.ts 文件类型的检讨。
这对性能很主要,否则所有的 node_modules 都将被检讨。
target: The version of JavaScript you're targeting. I recommend es2022 over esnext for stability.target:你要目标的 JavaScript 版本。
我推举利用 es2022 而不是 esnext,以得到更稳定的支持。
verbatimModuleSyntax: With this option, only imports using import type will be removed. This is the most predictable behavior.verbatimModuleSyntax:利用此选项,只有利用 import type 导入的内容才会被移除。
这是最可预测的行为。
allowJs and resolveJsonModule: Allows you to import .js and .json files. Always useful.allowJs 和 resolveJsonModule:许可你导入 .js 和 .json 文件。
非常有用。
moduleDetection: This option forces TypeScript to consider all files as modules. This helps to avoid 'cannot redeclare block-scoped variable' errors.moduleDetection:此选项逼迫 TypeScript 将所有文件视为模块。
这有助于避免 "cannot redeclare block-scoped variable" 缺点。
严格性 Strictness

这里是我建议所有项目利用的严格性选项。
Here are the strictness options I recommend for all projects.

{ "compilerOptions": { "strict": true, "noUncheckedIndexedAccess": true }}strict: Enables all strict type checking options. Indispensable.strict:启用所有严格的类型检讨选项。
不可或缺。
noUncheckedIndexedAccess: Prevents you from accessing an array or object without first checking if it's defined. This is a great way to prevent runtime errors, and should really be included in strict.noUncheckedIndexedAccess:防止在访问数组或工具之前未先检讨其是否定义。
这是防止运行时缺点的一个很好的方法,该当包含在严格模式中。

Many folks recommended the strictness options in tsconfig/bases, a wonderful repo which catalogs TSConfig options. These options include lots of rules which I consider too 'noisy', like noImplicitReturns, noUnusedLocals, noUnusedParameters, and noFallthroughCasesInSwitch. I recommend you add these rules to your tsconfig.json only if you want them.

许多人推举在 tsconfig/bases 中利用严格性选项,这是一个精彩的仓库,记录了 TSConfig 的各种选项。
这些选项包括许多我认为太过 "喧华" 的规则,比如 noImplicitReturns、noUnusedLocals、noUnusedParameters 和 noFallthroughCasesInSwitch。
我建议只有在须要时将这些规则添加到你的 tsconfig.json 中。

Transpiling with TypeScript 利用 TypeScript 进行转译

If you're transpiling your code (creating JavaScript files) with tsc, you'll want these options.如果你正在利用 tsc 进行代码转译(创建 JavaScript 文件),你将须要以下选项。

{ "compilerOptions": { "moduleResolution": "NodeNext", "module": "NodeNext" }}moduleResolution: Tells TypeScript how to resolve modules. NodeNext is the best option for if the code you're writing is meant to be run in Node.moduleResolution:见告 TypeScript 如何解析模块。
对付要在 Node 中运行的代码,NodeNext 是最佳选项。
module: Tells TypeScript what module syntax to use. NodeNext is the best option for Node.module:见告 TypeScript 利用哪种模块语法。
对付 Node,NodeNext 是最佳选项。
Not Transpiling with TypeScript 不该用 TypeScript 进行转译

If you're not transpiling your code with tsc, i.e. using TypeScript as more of a linter, you'll want these options.如果你不该用 tsc 进行代码转译,即将 TypeScript 作为一种更多用于代码检讨的工具,你将须要以下选项。

{ "compilerOptions": { "moduleResolution": "Bundler", "module": "ESNext", "noEmit": true }}moduleResolution: Bundler is the best option for if the code you're writing is meant to be bundled with a tool like Webpack, Rollup, Babel, SWC, or ESBuild.moduleResolution:对付要利用工具(如 Webpack、Rollup、Babel、SWC 或 ESBuild)进行打包的代码,Bundler 是最佳选项。
module: ESNext is the best option because it most closely mimics how bundlers treat modules.module:ESNext 是最佳选项,由于它最靠近打包工具对模块的处理办法。
Running in the DOM 在 DOM 中运行

If your code runs in the DOM, you'll want these options. 如果你的代码在 DOM 中运行,你将须要以下选项。

{ "compilerOptions": { "lib": ["es2022", "dom", "dom.iterable"] }}lib: Tells TypeScript what built-in types to include. es2022 is the best option for stability. dom and dom.iterable give you types for window, document etc.lib:见告 TypeScript 包括哪些内置类型。
es2022 是最稳定的选项。
dom 和 dom.iterable 为你供应了 window、document 等类型。
Not Running in the DOM 不在 DOM 中运行

If your code doesn't run in the DOM, you'll want lib: ["es2022"].如果你的代码不在 DOM 中运行,你将须要 lib: ["es2022"]。

{ "compilerOptions": { "lib": ["es2022"] }}

These are the same as above, but without the dom and dom.iterable typings.这与上面的选项相同,但不包括 dom 和 dom.iterable 类型定义。

Building for a Library 构建库

If you're building for a library, you'll want declaration: true. 如果你正在构建一个库,你将须要 declaration: true。

{ "compilerOptions": { "declaration": true }}declaration: Tells TypeScript to emit .d.ts files. This is needed so that libraries can get autocomplete on the .js files you're creating.declaration:见告 TypeScript 天生 .d.ts 文件。
这是为了让库能够在你创建的 .js 文件上得到自动补全。
Building for a Library in a Monorepo 在单体库中构建库

If you're building for a library in a monorepo, you'll also want these options.如果你正在单体库中构建库,你还将须要以下选项。

{ "compilerOptions": { "declaration": true, "composite": true, "sourceMap": true, "declarationMap": true }}composite: Tells TypeScript to emit .tsbuildinfo files. This tells TypeScript that your project is part of a monorepo, and also helps it to cache builds to run faster.composite:见告 TypeScript 天生 .tsbuildinfo 文件。
这见告 TypeScript 你的项目是单体库的一部分,也帮助它缓存构建以提高速率。
sourceMap and declarationMap: Tells TypeScript to emit source maps and declaration maps. These are needed so that when consumers of your libraries are debugging, they can jump to the original source code using go-to-definition.sourceMap 和 declarationMap:见告 TypeScript 天生源映射和声明映射。
这些是为了当你的库的利用者进行调试时,他们能够直接跳转到原始源代码。
What Did I Miss? 有什么遗漏的吗?

Hopefully, I've given you a bit of inspiration for the next time you need to configure TypeScript. 希望我给你一些启示,让你不才次配置 TypeScript 时更加得心应手。

本站所发布的文字与图片素材为非商业目的改编或整理,版权归原作者所有,如侵权或涉及违法,请联系我们删除,如需转载请保留原文地址:http://www.baanla.com/lz/zxsj/188840.html

XML地图 | 自定链接

Copyright 2005-20203 www.baidu.com 版权所有 | 琼ICP备2023011765号-4 | 统计代码

声明:本站所有内容均只可用于学习参考,信息与图片素材来源于互联网,如内容侵权与违规,请与本站联系,将在三个工作日内处理,联系邮箱:123456789@qq.com