Yes @ni-ko-o-kin
You need to create a file on the root folder of your project named: coverage.json
inside you need to structure it like this:
{
"exclude": {
"general": [
"**/path/file.js",
"**/anotherFile.js"
]
}
}
That will exclude whatever files you add, so instanbul won’t track them
Hope this helps you.
Greetings!