How to disable auuto closing quotes

If i type any quote, CodeMirror automatically inserts another quote.
I want to disable it.
I can’t do it with the code below.
How can I fix this code?

javascriprt

const editView =  new EditorView({
  state: EditorState.create({
    doc: value,
    extensions: [
      basicSetup,
      javascript(),
      autocompletion({
        activateOnTyping: false,
        defaultKeymap: false
      }),
    ],
  }),
  parent: node,
});

closeBrackets is part of basicSetup. Use minimalSetup or your own custom collection of extensions instead if you don’t want it.