From cedc2c61edb6f04383b8af6c0f84c57b5416ce9f Mon Sep 17 00:00:00 2001 From: zhaojinfeng <121016171@qq.com> Date: Wed, 21 Jun 2023 18:03:15 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20ts=E5=A3=B0=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.app.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tsconfig.app.json b/tsconfig.app.json index 25a4592..f34da00 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -3,12 +3,19 @@ "include": ["env.d.ts", "packages/**/*", "packages/**/*.vue", "stories/**","types/**"], "exclude": ["src/**/__tests__/*"], "compilerOptions": { + "ignoreDeprecations": "5.0", + "sourceMap": true, "composite": true, "baseUrl": ".", "paths": { "@/*": ["./packages/*"], "~/*": ["./packages/*"] }, + "lib": ["esnext", "dom"], + "types": ["@dcloudio/types", "@uni-helper/uni-app-types", "@uni-helper/uni-cloud-types", "@uni-helper/uni-ui-types"], "noImplicitAny":false + }, + "vueCompilerOptions": { + "nativeTags": ["block", "component", "template", "slot"] } }