I’m developing a custom App plugin for my Grafana instance, but i’m trying to use the follow NPM lib. in my code to rewrite the Select component react-select-async-paginate
This is necessary because in my select i have pretty big array to load, and would be nice to load with pagination.
But when i’m loading my plugin into Grafana with this module imported to my plugin, the following error appear:
Uncaught (in promise) SyntaxError: Unexpected token '<'
at eval (<anonymous>)
at le (system.js:4:25550)
If i try to just run the plugin without a build, only with “npm run dev” the following error appears:
Uncaught (in promise) TypeError: Unable to dynamically transpile ES module
A loader plugin needs to be configured via `SystemJS.config({ transpiler: 'transpiler-module' })`.