From 1de74c8b454c8b6fc6ef2fc7fc537d5bbe36ceec Mon Sep 17 00:00:00 2001 From: fanyinqian <1697744340@qq.com> Date: Thu, 2 Nov 2023 20:53:36 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A1=A5=E5=85=85=E5=AE=89=E8=A3=85type?= =?UTF-8?q?script=E7=9A=84=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\217\221\345\270\203\344\270\200\344\270\252CLI.md" | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git "a/\346\211\213\345\206\231\345\217\257\346\217\222\346\213\224\345\211\215\347\253\257\346\241\206\346\236\266\345\260\217\345\206\214/1-2.\347\211\233\345\210\200\345\260\217\350\257\225-\345\256\236\347\216\260\345\271\266\345\217\221\345\270\203\344\270\200\344\270\252CLI.md" "b/\346\211\213\345\206\231\345\217\257\346\217\222\346\213\224\345\211\215\347\253\257\346\241\206\346\236\266\345\260\217\345\206\214/1-2.\347\211\233\345\210\200\345\260\217\350\257\225-\345\256\236\347\216\260\345\271\266\345\217\221\345\270\203\344\270\200\344\270\252CLI.md" index c90f8a2..86c6601 100644 --- "a/\346\211\213\345\206\231\345\217\257\346\217\222\346\213\224\345\211\215\347\253\257\346\241\206\346\236\266\345\260\217\345\206\214/1-2.\347\211\233\345\210\200\345\260\217\350\257\225-\345\256\236\347\216\260\345\271\266\345\217\221\345\270\203\344\270\200\344\270\252CLI.md" +++ "b/\346\211\213\345\206\231\345\217\257\346\217\222\346\213\224\345\211\215\347\253\257\346\241\206\346\236\266\345\260\217\345\206\214/1-2.\347\211\233\345\210\200\345\260\217\350\257\225-\345\256\236\347\216\260\345\271\266\345\217\221\345\270\203\344\270\200\344\270\252CLI.md" @@ -28,8 +28,11 @@ npm i pnpm -g // 全局安装 pnpm 优秀的`类型提示`可以给使用者极佳的体验 +以下两种安装方式选择其一即可 + ```js -npm i typescript -d //我个人比较喜欢全局安装 +npm i typescript -d // 局部安装 +npm i typescript -g //我个人比较喜欢全局安装 ``` ### 创建项目 @@ -66,8 +69,11 @@ pnpm init //初始化并自动生成package.json ### 生成 tsconfig.json +根据不同的安装方式使用对应的初始化命令 + ```js -tsc --init +npm tsc --init // 局部安装的初始化命令 +tsc --init // 全局安装的初始化命令 ``` ### 创建 src/index.ts