From 4c5573ff61d7fadf84e437301ea148f29c752066 Mon Sep 17 00:00:00 2001 From: Burt <1020103647@qq.com> Date: Sat, 23 Dec 2023 12:58:14 +0800 Subject: [PATCH] =?UTF-8?q?chore(tsconfig.json):=20=E5=A4=84=E7=90=86?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.json | 7 +++++-- tsconfig.node.json | 10 ---------- 2 files changed, 5 insertions(+), 12 deletions(-) delete mode 100644 tsconfig.node.json diff --git a/tsconfig.json b/tsconfig.json index 9593800..6a82df5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,10 @@ { "compilerOptions": { + "composite": true, + "skipLibCheck": true, "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true, "sourceMap": true, "baseUrl": ".", "paths": { @@ -12,6 +16,5 @@ "vueCompilerOptions": { "nativeTags": ["block", "template", "component", "slot"] }, - "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], - "references": [{ "path": "./tsconfig.node.json" }] + "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"] } diff --git a/tsconfig.node.json b/tsconfig.node.json deleted file mode 100644 index 42872c5..0000000 --- a/tsconfig.node.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "compilerOptions": { - "composite": true, - "skipLibCheck": true, - "module": "ESNext", - "moduleResolution": "bundler", - "allowSyntheticDefaultImports": true - }, - "include": ["vite.config.ts"] -}