From 44f534e71d0bc7a7e2d177137cc74bc1cf11e4c4 Mon Sep 17 00:00:00 2001 From: RhenCloud Date: Fri, 14 Aug 2026 06:52:05 +0800 Subject: [PATCH] fix(docs): standalone tsconfig for vitepress config loading --- docs/tsconfig.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docs/tsconfig.json diff --git a/docs/tsconfig.json b/docs/tsconfig.json new file mode 100644 index 0000000..4e658be --- /dev/null +++ b/docs/tsconfig.json @@ -0,0 +1,11 @@ +{ + "compilerOptions": { + "target": "ESNext", + "module": "ESNext", + "moduleResolution": "bundler", + "strict": true, + "skipLibCheck": true, + "noEmit": true + }, + "include": [".vitepress/**/*.ts"] +}