From 5b90501ceb443d30013afd48920f27c59accb1b1 Mon Sep 17 00:00:00 2001 From: Florian Sylvain Date: Sun, 19 Mar 2023 01:16:41 +0100 Subject: [PATCH] Added missing .vue include --- vue3-TS-compAPI/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vue3-TS-compAPI/tsconfig.json b/vue3-TS-compAPI/tsconfig.json index 16e4e43..e941edb 100644 --- a/vue3-TS-compAPI/tsconfig.json +++ b/vue3-TS-compAPI/tsconfig.json @@ -100,6 +100,6 @@ // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ "skipLibCheck": true /* Skip type checking all .d.ts files. */ }, - "include": ["src/**/*", "vite.config.*"], + "include": ["env.d.ts", "src/**/*", "src/**/*.vue", "vite.config.*"], "exclude": ["src/**/*.test.ts", "node_modules"] }