From 23cee34c18b1fbb693af9ab7cd56678ed9d9c813 Mon Sep 17 00:00:00 2001 From: Sharonzd Date: Mon, 31 Jul 2023 11:10:23 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20typo:=20=E4=BF=AE=E6=94=B9=20quick-star?= =?UTF-8?q?t=20=E7=9A=84=E6=8F=8F=E8=BF=B0=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- site/docs/app/quick-start.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/site/docs/app/quick-start.md b/site/docs/app/quick-start.md index 0913eb75..911da4c0 100644 --- a/site/docs/app/quick-start.md +++ b/site/docs/app/quick-start.md @@ -90,6 +90,7 @@ module.exports = { } } ``` +以上是一个比较精简可用的配置,使用`noEmit: true`可以让TypeScript不要去处理代码的生成,获得更好的类型检查的性能。 ### 浏览器兼容性配置 @@ -100,8 +101,6 @@ chrome 76 firefox 64 ``` -以上是一个比较精简可用的配置,使用`emit: false`可以让TypeScript不要去处理代码的生成,获得更好的类型检查的性能。 - ### 项目配置 在项目目录下创建一个`reskript.config.ts`文件,简单地填空如下内容: @@ -122,7 +121,7 @@ export default configure( ); ``` -你可以通过[配置文件](../settings)来了解更多的配置信息。 +你可以通过[配置文件](../settings/setting)来了解更多的配置信息。 ## 编写入口代码