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