istanbuljs / babel-plugin-istanbul

A babel plugin that adds istanbul instrumentation to ES6 code
BSD 3-Clause "New" or "Revised" License
617 stars 71 forks source link

babel-plugin-istanbul is not working properly in babel config file #282

Open Jamesj001 opened 1 year ago

Jamesj001 commented 1 year ago

This issue is a bit strange one as the above statement is partially happening

Added babel-plugin-istanbul in babel config file like this :

plugins: [
        '@babel/plugin-proposal-object-rest-spread',
        [
          "istanbul",
          {
            "excludeNodeModules": false
          }
        ]
      ]

Explaining in detail :

So when I add the babel-plugin-istanbul in babel.config.js it works completely fine but if i add it in babel.config.cts in the same manner it's not working properly

So the only difference is in the extension of the 2 babel config files i.e. .js and .cts

Any clue how to fix this ?

Jamesj001 commented 1 year ago

@coreyfarrell @bcoe any thoughts on this ?