From 63f5ee017b43a0ae72c10e7cd23dafe057e60764 Mon Sep 17 00:00:00 2001 From: Arthur Abeilice Date: Mon, 4 May 2026 19:56:20 -0300 Subject: [PATCH] refactor: update TypeScript configuration to extend correct Vue tsconfig files --- tsconfig.config.json | 3 ++- tsconfig.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tsconfig.config.json b/tsconfig.config.json index 9a8394f..574e355 100644 --- a/tsconfig.config.json +++ b/tsconfig.config.json @@ -1,5 +1,5 @@ { - "extends": "@vue/tsconfig/tsconfig.node.json", + "extends": "@vue/tsconfig/tsconfig.json", "include": [ "vite.config.*", "cypress.config.*", @@ -7,6 +7,7 @@ ], "compilerOptions": { "composite": true, + "noEmit": false, "types": [ "node" ] diff --git a/tsconfig.json b/tsconfig.json index 5b0dfdf..d096c1a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "@vue/tsconfig/tsconfig.web.json", + "extends": "@vue/tsconfig/tsconfig.dom.json", "include": [ "env.d.ts", "src/**/*", @@ -21,6 +21,7 @@ "skipLibCheck": true, "target": "esnext", "module": "esnext", + "moduleResolution": "bundler", "lib": [ "esnext", "dom"