@marcusolsson @vsergeyev @daniellee @svetb @yosiasz
Can I please get any insight on this, I tried to build a custom plugin myself in data/plugins folder.(the plugin actually extends the functionality of existing grafana panel plugin) .I copied the source and shipped it to data/plugins folder. The new plugin needs to make use of native typescript files like app/features/explore/utils/links, app/core/services, app/types etc. while building it gives [Cannot find modules or corresponding type declarations error]
In order to resolve these module load errors, I tried to tweak the tsconfig.json by introducing path mappings and tools like tsmodule-alias so that I can map these @app components by aliasing. But this didn’t help.
Can you’ll please suggest a better way to “import public/app folder inside custom panel plugin”?