From 0860b61ccdf675abef5fbef5af733126ec4cd252 Mon Sep 17 00:00:00 2001 From: snowykami Date: Sun, 1 Sep 2024 18:29:00 +0800 Subject: [PATCH] =?UTF-8?q?:memo:=20[docs]:=20=E6=96=B0=E5=A2=9E=E5=9C=A8?= =?UTF-8?q?=E7=BA=BF=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/package.json | 3 ++- docs/tsconfig.json | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/tsconfig.json diff --git a/docs/package.json b/docs/package.json index 716be997..73a1c9dd 100644 --- a/docs/package.json +++ b/docs/package.json @@ -10,6 +10,7 @@ }, "type": "module", "dependencies": { - "clipboard": "^2.0.11" + "clipboard": "^2.0.11", + "vue": "^3.4.38" } } \ No newline at end of file diff --git a/docs/tsconfig.json b/docs/tsconfig.json new file mode 100644 index 00000000..95259167 --- /dev/null +++ b/docs/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "es6", + "module": "commonjs", + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true + }, + "include": [ + "components/**/*.ts", + ], + "exclude": [ + "node_modules" + ] +} \ No newline at end of file