vue-debounce-decorator
vue-debounce-decorator copied to clipboard
Use causes Cannot use import statement outside a module
I have the same error, when try run test...
I encountered the same problem during executing Jest tests. You need to add this module to the transformIgnorePatterns array within your Jest Configuration (for example within the jest.config.js file).
// ...
transformIgnorePatterns: [
'/node_modules/(?!(vue-debounce-decorator)/)',
],
// ...