Renders the current state of the file tree to the developer console.

The ConsoleView extension can be configured with the ConsoleViewOptions object.

import { defineFilePond } from 'filepond';
import { locale } from 'filepond/locales/en-gb.js';
import { ConsoleView } from 'filepond/extensions/console-view.js';

defineFilePond({
    locale,
    extensions: [
        // Add the ConsoleView extension and configure with ConsoleViewOptions object
        ConsoleView
    ]
})