Closed NewOverm4n closed 1 year ago
After checking the vue-tsc types, errors are displayed in the console, but the plugin works correctly.
tsconfig.json
{ "compilerOptions": { "baseUrl": ".", "module": "ESNext", "target": "ESNext", "strict": true, "moduleResolution": "Node", "sourceMap": true, "allowJs": true, "resolveJsonModule": true, "useDefineForClassFields": true, "jsx": "preserve", "noImplicitThis": true, "allowSyntheticDefaultImports": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, "isolatedModules": true, "preserveValueImports": true, "importsNotUsedAsValues": "error", "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "skipLibCheck": true, "types": [ "vitest/globals" ] }, "exclude": [ "node_modules" ], "include": [ "./**/*.ts", "./**/*.vue", "commitlint.config.js", "vite.config.ts" ] }
I got around this by using import.meta.glob without using this plugin.
This issue will be fixed in the next version. 😅
After checking the vue-tsc types, errors are displayed in the console, but the plugin works correctly.
tsconfig.json