Hello,
I'm currently testing Experience Builder and trying to develop my own widget. I needed to install Experience Builder offline to use it and now I can't use the esri library.
Do you have any solution to help me ?
Thank you
Solved! Go to Solution.
Try adding the jimu-arcgis dependency in your manifest:
There may also be an issue loading your typescript definitions (VS Code maxes out scanned files). A previous solution was to modify the tsconfig.json file:
Good luck!
Try adding the jimu-arcgis dependency in your manifest:
There may also be an issue loading your typescript definitions (VS Code maxes out scanned files). A previous solution was to modify the tsconfig.json file:
Good luck!
Thanks !!
I already added the dependency before. So I added all this files to the exclude part and it worked for me !
Thanks you !
The 2nd solution from DougLogsdon2 worked for me. you need to update the tsconfig.json file
"exclude": [
"node_modules",
"arcgis-js-api",
"dist",
"__mocks__",
"jest-systemjs-transformer.js",
"jest.config.js",
"jimu-for-test",
"webpack.config.js",
"webpack"
]