Create a custom ReplaceOptions

Hi Niklas thanks for the fast response.
So, what I’m doing so far is this:
I’ve created 2 new files at my project folder

Screenshot_1

The first one is pretty much the same of the original, I’m just changing the imports, to match my ReplaceOptions file, and changed the module name to CustomMenuProvider instead of ReplaceMenuProvider
And in my ReplaceOptions file, I’ve removed all the options I don’t want

So far so good.

And the file in which I work with the BPMN I did this

import * as CustomMenuProvider from './ReplaceOptions/ReplaceMenuProvider';

...

this.viewer = new BpmnJS({
			container: '#canvas',
			width: '100%',
			height: '600px',
			keyboard: { bindTo: document },
			additionalModules: [
				CustomMenuProvider
			]
		});

Am I missing something?