fix(docs): standalone tsconfig for vitepress config loading

This commit is contained in:
RhenCloud 2026-08-14 06:52:05 +08:00
parent 6f1a334150
commit 44f534e71d
No known key found for this signature in database
GPG key ID: A574A617378C4E0B

11
docs/tsconfig.json Normal file
View file

@ -0,0 +1,11 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"skipLibCheck": true,
"noEmit": true
},
"include": [".vitepress/**/*.ts"]
}