From a4e3d15828509a3f9fbf94b09d3f65137affbf14 Mon Sep 17 00:00:00 2001 From: Lee <109123482+hey-lee@users.noreply.github.com> Date: Tue, 8 Aug 2023 11:46:13 +0800 Subject: [PATCH] Update basic.md typo: update `app.ts` to `app.js` --- docs/basic.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basic.md b/docs/basic.md index cb82075..9bb0dbe 100644 --- a/docs/basic.md +++ b/docs/basic.md @@ -175,7 +175,7 @@ tsc 有很多参数,可以调整编译行为。 $ tsc file1.ts file2.ts --outFile app.js ``` -上面命令将`file1.ts`和`file2.ts`两个脚本编译成一个 JavaScript 文件`app.ts`。 +上面命令将`file1.ts`和`file2.ts`两个脚本编译成一个 JavaScript 文件`app.js`。 **(2)--outDir**