From 81e77724cacfa37132a2ad70a8b1302befa81bec Mon Sep 17 00:00:00 2001 From: anghunk Date: Wed, 14 Jan 2026 10:18:19 +0800 Subject: [PATCH] =?UTF-8?q?docs(guide):=20=E6=9B=B4=E6=96=B0=E5=89=8D?= =?UTF-8?q?=E7=AB=AF=E9=85=8D=E7=BD=AE=E8=84=9A=E6=9C=AC=E9=93=BE=E6=8E=A5?= =?UTF-8?q?=20-=20=E5=B0=86=20cwd-comments.js=20=E8=84=9A=E6=9C=AC?= =?UTF-8?q?=E9=93=BE=E6=8E=A5=E4=BB=8E=E6=9C=AC=E5=9C=B0=E8=B7=AF=E5=BE=84?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=B8=BA=20CDN=20=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit docs: 删除冗余的 tsconfig.json 配置文件 - 移除 docs 目录下不必要的 TypeScript 配置文件 --- docs/guide/frontend-config.md | 2 +- docs/tsconfig.json | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 docs/tsconfig.json diff --git a/docs/guide/frontend-config.md b/docs/guide/frontend-config.md index 505735b..d905ef0 100644 --- a/docs/guide/frontend-config.md +++ b/docs/guide/frontend-config.md @@ -9,7 +9,7 @@ 在初始化 `CWDComments` 实例时,可以传入以下配置参数: ```html - + ``` ```html diff --git a/docs/tsconfig.json b/docs/tsconfig.json deleted file mode 100644 index 201bbda..0000000 --- a/docs/tsconfig.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "compilerOptions": { - "target": "ESNext", - "module": "ESNext", - "moduleResolution": "Bundler", - "strict": true, - "noEmit": true, - "skipLibCheck": true, - "esModuleInterop": true - }, - "include": [".vitepress/**/*.ts", ".vitepress/**/*.vue"] -}