Hi,
Okay, you’re probably interested in this thread
And as a side note
-
sonar.langauge=js
= this isn’t doing anything -
**
in an exclusion/inclusion pattern means 0-n directories, sosonar.exclusions=test/**
isn’t doing what you think it is. Trysonar.exclusions=test/**/*.ts
(&etc) instead - except that your specification of
sonar.tests=test/
naturally already excludes those files from being considered source files.
Ann