SonarCloud w/ Bitbucket (VueJS)

Hello @andre_s_ferreira,

can you create a tsconfig.sonar.json file in the root of the project with these contents?

{
  "compilerOptions": {
    "module": "ESNext",
    "target": "ESNext",
    "lib": ["DOM", "ESNext"],
    "strict": true,
    "noImplicitAny": false,
    "esModuleInterop": true,
    "jsx": "preserve",
    "skipLibCheck": true,
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "noUnusedLocals": true,
    "strictNullChecks": true,
    "allowJs": true,
  },
  "include": [
    "src/**/*",
    "src/**/*.vue",
    "src/**/*.js",
  ]
}

Then add in your sonar.properties:

sonar.typescript.tsconfigPaths=tsconfig.sonar.json

Please let me know if that helps
Victor