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"] } }