From e0586908f5a348f58856e6e512e335f69945c5a9 Mon Sep 17 00:00:00 2001 From: Felix Schmenger Date: Thu, 2 Apr 2026 12:58:50 +0200 Subject: [PATCH] Extend jsconfig.json for better Visual Studio Code experience. --- jsconfig.json | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/jsconfig.json b/jsconfig.json index 44be300f..30171ef5 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -1,9 +1,26 @@ { "compilerOptions": { + "target": "ES2020", + "module": "ESNext", + "moduleResolution": "Node", + "checkJs": true, + + "baseUrl": ".", + "paths": { - "@/*": ["./src/*"], - "APP/*": ["./app/*"] + "@/*": ["src/*"], + "APP/*": ["app/*"] } }, - "exclude": ["app-starter", "dist", "node_modules"] -} + "include": [ + "src/**/*.js", + "src/**/*.vue", + "app/**/*.js", + "app/**/*.vue" + ], + "exclude": [ + "app-starter", + "dist", + "node_modules" + ] +} \ No newline at end of file