How can I improve code coverage in SonarQube Analysis by excluding ts.files?
I attempted the following code:
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
"codeCoverageExclude": [
"src/app/user/about-report/about-report.component.ts"
],
}
}
Unfortunately, it is still being analyzed in Sonar. Can someone assist me? I am working with Angular 7.