[14:19:53] im trying to load google's model-viewer library from an extension. doing it like this: [14:19:55] "ResourceModules": { [14:19:55]  "ext.boilerPlate": { [14:19:56]   "localBasePath": "resources/ext.boilerPlate", [14:19:56]   "remoteExtPath": "BoilerPlate/resources/ext.boilerPlate", [14:19:57]   "dependencies": [], [14:19:57]   "styles": [], [14:19:58]   "messages": [], [14:19:58]   "scripts": ["model-viewer.min.js"] [14:19:59]  } [14:19:59] } [14:20:26] but in browser console i get this error: Uncaught SyntaxError: Identifier '$' has already been declared [14:20:27] anyone experienced this? [14:21:38] i suppose i need to modify the library and isolate its context in a (() => { /* code */ })() so it doesnt interfere with global vars