diff --git a/custom_import_map/.babelrc b/.babelrc similarity index 100% rename from custom_import_map/.babelrc rename to .babelrc diff --git a/custom_import_map/.eslintrc.js b/.eslintrc.js similarity index 100% rename from custom_import_map/.eslintrc.js rename to .eslintrc.js diff --git a/custom_import_map/.gitignore b/.gitignore similarity index 100% rename from custom_import_map/.gitignore rename to .gitignore diff --git a/custom_import_map/.i18nrc.json b/.i18nrc.json similarity index 100% rename from custom_import_map/.i18nrc.json rename to .i18nrc.json diff --git a/custom_import_map/.lintstagedrc b/.lintstagedrc similarity index 100% rename from custom_import_map/.lintstagedrc rename to .lintstagedrc diff --git a/custom_import_map/.prettierignore b/.prettierignore similarity index 100% rename from custom_import_map/.prettierignore rename to .prettierignore diff --git a/custom_import_map/.prettierrc b/.prettierrc similarity index 100% rename from custom_import_map/.prettierrc rename to .prettierrc diff --git a/custom_import_map/babel.config.js b/babel.config.js similarity index 100% rename from custom_import_map/babel.config.js rename to babel.config.js diff --git a/custom_import_map/build.sh b/build.sh similarity index 100% rename from custom_import_map/build.sh rename to build.sh diff --git a/custom_import_map/common/constants/shared.ts b/common/constants/shared.ts similarity index 100% rename from custom_import_map/common/constants/shared.ts rename to common/constants/shared.ts diff --git a/custom_import_map/common/index.ts b/common/index.ts similarity index 100% rename from custom_import_map/common/index.ts rename to common/index.ts diff --git a/custom_import_map/common/map_saved_object_attributes.ts b/common/map_saved_object_attributes.ts similarity index 100% rename from custom_import_map/common/map_saved_object_attributes.ts rename to common/map_saved_object_attributes.ts diff --git a/custom_import_map/common/util.ts b/common/util.ts similarity index 100% rename from custom_import_map/common/util.ts rename to common/util.ts diff --git a/custom_import_map/cypress.json b/cypress.json similarity index 100% rename from custom_import_map/cypress.json rename to cypress.json diff --git a/custom_import_map/cypress/fixtures/sample_geojson.json b/cypress/fixtures/sample_geojson.json similarity index 100% rename from custom_import_map/cypress/fixtures/sample_geojson.json rename to cypress/fixtures/sample_geojson.json diff --git a/custom_import_map/cypress/integration/geojson_file_upload.spec.js b/cypress/integration/geojson_file_upload.spec.js similarity index 100% rename from custom_import_map/cypress/integration/geojson_file_upload.spec.js rename to cypress/integration/geojson_file_upload.spec.js diff --git a/custom_import_map/cypress/integration/import_vector_map_tab.spec.js b/cypress/integration/import_vector_map_tab.spec.js similarity index 100% rename from custom_import_map/cypress/integration/import_vector_map_tab.spec.js rename to cypress/integration/import_vector_map_tab.spec.js diff --git a/custom_import_map/cypress/plugins/index.js b/cypress/plugins/index.js similarity index 100% rename from custom_import_map/cypress/plugins/index.js rename to cypress/plugins/index.js diff --git a/custom_import_map/cypress/support/commands.js b/cypress/support/commands.js similarity index 100% rename from custom_import_map/cypress/support/commands.js rename to cypress/support/commands.js diff --git a/custom_import_map/cypress/support/constants.js b/cypress/support/constants.js similarity index 100% rename from custom_import_map/cypress/support/constants.js rename to cypress/support/constants.js diff --git a/custom_import_map/cypress/support/index.js b/cypress/support/index.js similarity index 100% rename from custom_import_map/cypress/support/index.js rename to cypress/support/index.js diff --git a/custom_import_map/cypress/utils/constants.js b/cypress/utils/constants.js similarity index 100% rename from custom_import_map/cypress/utils/constants.js rename to cypress/utils/constants.js diff --git a/custom_import_map/opensearch_dashboards.json b/opensearch_dashboards.json similarity index 100% rename from custom_import_map/opensearch_dashboards.json rename to opensearch_dashboards.json diff --git a/custom_import_map/package.json b/package.json similarity index 100% rename from custom_import_map/package.json rename to package.json diff --git a/custom_import_map/public/_variables.scss b/public/_variables.scss similarity index 100% rename from custom_import_map/public/_variables.scss rename to public/_variables.scss diff --git a/custom_import_map/public/application.tsx b/public/application.tsx similarity index 100% rename from custom_import_map/public/application.tsx rename to public/application.tsx diff --git a/custom_import_map/public/components/__snapshots__/show_error_modal.test.tsx.snap b/public/components/__snapshots__/show_error_modal.test.tsx.snap similarity index 100% rename from custom_import_map/public/components/__snapshots__/show_error_modal.test.tsx.snap rename to public/components/__snapshots__/show_error_modal.test.tsx.snap diff --git a/custom_import_map/public/components/__snapshots__/vector_upload_options.test.tsx.snap b/public/components/__snapshots__/vector_upload_options.test.tsx.snap similarity index 100% rename from custom_import_map/public/components/__snapshots__/vector_upload_options.test.tsx.snap rename to public/components/__snapshots__/vector_upload_options.test.tsx.snap diff --git a/custom_import_map/public/components/add_layer_panel/add_layer_panel.scss b/public/components/add_layer_panel/add_layer_panel.scss similarity index 100% rename from custom_import_map/public/components/add_layer_panel/add_layer_panel.scss rename to public/components/add_layer_panel/add_layer_panel.scss diff --git a/custom_import_map/public/components/add_layer_panel/add_layer_panel.tsx b/public/components/add_layer_panel/add_layer_panel.tsx similarity index 100% rename from custom_import_map/public/components/add_layer_panel/add_layer_panel.tsx rename to public/components/add_layer_panel/add_layer_panel.tsx diff --git a/custom_import_map/public/components/add_layer_panel/index.ts b/public/components/add_layer_panel/index.ts similarity index 100% rename from custom_import_map/public/components/add_layer_panel/index.ts rename to public/components/add_layer_panel/index.ts diff --git a/custom_import_map/public/components/app.tsx b/public/components/app.tsx similarity index 100% rename from custom_import_map/public/components/app.tsx rename to public/components/app.tsx diff --git a/custom_import_map/public/components/layer_config/base_map_layer_config_panel.tsx b/public/components/layer_config/base_map_layer_config_panel.tsx similarity index 100% rename from custom_import_map/public/components/layer_config/base_map_layer_config_panel.tsx rename to public/components/layer_config/base_map_layer_config_panel.tsx diff --git a/custom_import_map/public/components/layer_config/custom_map_config/custom_map_config_panel.tsx b/public/components/layer_config/custom_map_config/custom_map_config_panel.tsx similarity index 100% rename from custom_import_map/public/components/layer_config/custom_map_config/custom_map_config_panel.tsx rename to public/components/layer_config/custom_map_config/custom_map_config_panel.tsx diff --git a/custom_import_map/public/components/layer_config/custom_map_config/custom_map_source.tsx b/public/components/layer_config/custom_map_config/custom_map_source.tsx similarity index 100% rename from custom_import_map/public/components/layer_config/custom_map_config/custom_map_source.tsx rename to public/components/layer_config/custom_map_config/custom_map_source.tsx diff --git a/custom_import_map/public/components/layer_config/documents_config/document_layer_config_panel.tsx b/public/components/layer_config/documents_config/document_layer_config_panel.tsx similarity index 100% rename from custom_import_map/public/components/layer_config/documents_config/document_layer_config_panel.tsx rename to public/components/layer_config/documents_config/document_layer_config_panel.tsx diff --git a/custom_import_map/public/components/layer_config/documents_config/document_layer_source.tsx b/public/components/layer_config/documents_config/document_layer_source.tsx similarity index 100% rename from custom_import_map/public/components/layer_config/documents_config/document_layer_source.tsx rename to public/components/layer_config/documents_config/document_layer_source.tsx diff --git a/custom_import_map/public/components/layer_config/documents_config/document_layer_style.tsx b/public/components/layer_config/documents_config/document_layer_style.tsx similarity index 100% rename from custom_import_map/public/components/layer_config/documents_config/document_layer_style.tsx rename to public/components/layer_config/documents_config/document_layer_style.tsx diff --git a/custom_import_map/public/components/layer_config/index.ts b/public/components/layer_config/index.ts similarity index 100% rename from custom_import_map/public/components/layer_config/index.ts rename to public/components/layer_config/index.ts diff --git a/custom_import_map/public/components/layer_config/layer_basic_settings.tsx b/public/components/layer_config/layer_basic_settings.tsx similarity index 100% rename from custom_import_map/public/components/layer_config/layer_basic_settings.tsx rename to public/components/layer_config/layer_basic_settings.tsx diff --git a/custom_import_map/public/components/layer_config/layer_config_panel.tsx b/public/components/layer_config/layer_config_panel.tsx similarity index 100% rename from custom_import_map/public/components/layer_config/layer_config_panel.tsx rename to public/components/layer_config/layer_config_panel.tsx diff --git a/custom_import_map/public/components/layer_control_panel/index.ts b/public/components/layer_control_panel/index.ts similarity index 100% rename from custom_import_map/public/components/layer_control_panel/index.ts rename to public/components/layer_control_panel/index.ts diff --git a/custom_import_map/public/components/layer_control_panel/layer_control_panel.scss b/public/components/layer_control_panel/layer_control_panel.scss similarity index 100% rename from custom_import_map/public/components/layer_control_panel/layer_control_panel.scss rename to public/components/layer_control_panel/layer_control_panel.scss diff --git a/custom_import_map/public/components/layer_control_panel/layer_control_panel.tsx b/public/components/layer_control_panel/layer_control_panel.tsx similarity index 100% rename from custom_import_map/public/components/layer_control_panel/layer_control_panel.tsx rename to public/components/layer_control_panel/layer_control_panel.tsx diff --git a/custom_import_map/public/components/map_container/index.ts b/public/components/map_container/index.ts similarity index 100% rename from custom_import_map/public/components/map_container/index.ts rename to public/components/map_container/index.ts diff --git a/custom_import_map/public/components/map_container/map_container.scss b/public/components/map_container/map_container.scss similarity index 100% rename from custom_import_map/public/components/map_container/map_container.scss rename to public/components/map_container/map_container.scss diff --git a/custom_import_map/public/components/map_container/map_container.tsx b/public/components/map_container/map_container.tsx similarity index 100% rename from custom_import_map/public/components/map_container/map_container.tsx rename to public/components/map_container/map_container.tsx diff --git a/custom_import_map/public/components/map_page/index.ts b/public/components/map_page/index.ts similarity index 100% rename from custom_import_map/public/components/map_page/index.ts rename to public/components/map_page/index.ts diff --git a/custom_import_map/public/components/map_page/map_page.tsx b/public/components/map_page/map_page.tsx similarity index 100% rename from custom_import_map/public/components/map_page/map_page.tsx rename to public/components/map_page/map_page.tsx diff --git a/custom_import_map/public/components/map_top_nav/get_top_nav_config.tsx b/public/components/map_top_nav/get_top_nav_config.tsx similarity index 100% rename from custom_import_map/public/components/map_top_nav/get_top_nav_config.tsx rename to public/components/map_top_nav/get_top_nav_config.tsx diff --git a/custom_import_map/public/components/map_top_nav/index.ts b/public/components/map_top_nav/index.ts similarity index 100% rename from custom_import_map/public/components/map_top_nav/index.ts rename to public/components/map_top_nav/index.ts diff --git a/custom_import_map/public/components/map_top_nav/top_nav_menu.tsx b/public/components/map_top_nav/top_nav_menu.tsx similarity index 100% rename from custom_import_map/public/components/map_top_nav/top_nav_menu.tsx rename to public/components/map_top_nav/top_nav_menu.tsx diff --git a/custom_import_map/public/components/maps_list/index.ts b/public/components/maps_list/index.ts similarity index 100% rename from custom_import_map/public/components/maps_list/index.ts rename to public/components/maps_list/index.ts diff --git a/custom_import_map/public/components/maps_list/maps_list.tsx b/public/components/maps_list/maps_list.tsx similarity index 100% rename from custom_import_map/public/components/maps_list/maps_list.tsx rename to public/components/maps_list/maps_list.tsx diff --git a/custom_import_map/public/components/show_error_modal.test.tsx b/public/components/show_error_modal.test.tsx similarity index 100% rename from custom_import_map/public/components/show_error_modal.test.tsx rename to public/components/show_error_modal.test.tsx diff --git a/custom_import_map/public/components/show_error_modal.tsx b/public/components/show_error_modal.tsx similarity index 100% rename from custom_import_map/public/components/show_error_modal.tsx rename to public/components/show_error_modal.tsx diff --git a/custom_import_map/public/components/tooltip/create_tooltip.tsx b/public/components/tooltip/create_tooltip.tsx similarity index 100% rename from custom_import_map/public/components/tooltip/create_tooltip.tsx rename to public/components/tooltip/create_tooltip.tsx diff --git a/custom_import_map/public/components/tooltip/tooltipContainer.tsx b/public/components/tooltip/tooltipContainer.tsx similarity index 100% rename from custom_import_map/public/components/tooltip/tooltipContainer.tsx rename to public/components/tooltip/tooltipContainer.tsx diff --git a/custom_import_map/public/components/tooltip/tooltipHeaderContent.tsx b/public/components/tooltip/tooltipHeaderContent.tsx similarity index 100% rename from custom_import_map/public/components/tooltip/tooltipHeaderContent.tsx rename to public/components/tooltip/tooltipHeaderContent.tsx diff --git a/custom_import_map/public/components/tooltip/tooltipTable.tsx b/public/components/tooltip/tooltipTable.tsx similarity index 100% rename from custom_import_map/public/components/tooltip/tooltipTable.tsx rename to public/components/tooltip/tooltipTable.tsx diff --git a/custom_import_map/public/components/vector_upload_options.scss b/public/components/vector_upload_options.scss similarity index 100% rename from custom_import_map/public/components/vector_upload_options.scss rename to public/components/vector_upload_options.scss diff --git a/custom_import_map/public/components/vector_upload_options.test.tsx b/public/components/vector_upload_options.test.tsx similarity index 100% rename from custom_import_map/public/components/vector_upload_options.test.tsx rename to public/components/vector_upload_options.test.tsx diff --git a/custom_import_map/public/components/vector_upload_options.tsx b/public/components/vector_upload_options.tsx similarity index 100% rename from custom_import_map/public/components/vector_upload_options.tsx rename to public/components/vector_upload_options.tsx diff --git a/custom_import_map/public/index.scss b/public/index.scss similarity index 100% rename from custom_import_map/public/index.scss rename to public/index.scss diff --git a/custom_import_map/public/index.ts b/public/index.ts similarity index 100% rename from custom_import_map/public/index.ts rename to public/index.ts diff --git a/custom_import_map/public/model/OSMLayerFunctions.ts b/public/model/OSMLayerFunctions.ts similarity index 100% rename from custom_import_map/public/model/OSMLayerFunctions.ts rename to public/model/OSMLayerFunctions.ts diff --git a/custom_import_map/public/model/customLayerFunctions.ts b/public/model/customLayerFunctions.ts similarity index 100% rename from custom_import_map/public/model/customLayerFunctions.ts rename to public/model/customLayerFunctions.ts diff --git a/custom_import_map/public/model/documentLayerFunctions.ts b/public/model/documentLayerFunctions.ts similarity index 100% rename from custom_import_map/public/model/documentLayerFunctions.ts rename to public/model/documentLayerFunctions.ts diff --git a/custom_import_map/public/model/layerRenderController.ts b/public/model/layerRenderController.ts similarity index 100% rename from custom_import_map/public/model/layerRenderController.ts rename to public/model/layerRenderController.ts diff --git a/custom_import_map/public/model/layersFunctions.ts b/public/model/layersFunctions.ts similarity index 100% rename from custom_import_map/public/model/layersFunctions.ts rename to public/model/layersFunctions.ts diff --git a/custom_import_map/public/model/mapLayerType.ts b/public/model/mapLayerType.ts similarity index 100% rename from custom_import_map/public/model/mapLayerType.ts rename to public/model/mapLayerType.ts diff --git a/custom_import_map/public/model/mapState.ts b/public/model/mapState.ts similarity index 100% rename from custom_import_map/public/model/mapState.ts rename to public/model/mapState.ts diff --git a/custom_import_map/public/plugin.tsx b/public/plugin.tsx similarity index 100% rename from custom_import_map/public/plugin.tsx rename to public/plugin.tsx diff --git a/custom_import_map/public/services.ts b/public/services.ts similarity index 100% rename from custom_import_map/public/services.ts rename to public/services.ts diff --git a/custom_import_map/public/types.ts b/public/types.ts similarity index 100% rename from custom_import_map/public/types.ts rename to public/types.ts diff --git a/custom_import_map/public/utils/breadcrumbs.ts b/public/utils/breadcrumbs.ts similarity index 100% rename from custom_import_map/public/utils/breadcrumbs.ts rename to public/utils/breadcrumbs.ts diff --git a/custom_import_map/public/utils/geo_formater.ts b/public/utils/geo_formater.ts similarity index 100% rename from custom_import_map/public/utils/geo_formater.ts rename to public/utils/geo_formater.ts diff --git a/custom_import_map/public/utils/getIntialConfig.ts b/public/utils/getIntialConfig.ts similarity index 100% rename from custom_import_map/public/utils/getIntialConfig.ts rename to public/utils/getIntialConfig.ts diff --git a/custom_import_map/server/clusters/geospatial_cluster.js b/server/clusters/geospatial_cluster.js similarity index 100% rename from custom_import_map/server/clusters/geospatial_cluster.js rename to server/clusters/geospatial_cluster.js diff --git a/custom_import_map/server/clusters/geospatial_plugin.ts b/server/clusters/geospatial_plugin.ts similarity index 100% rename from custom_import_map/server/clusters/geospatial_plugin.ts rename to server/clusters/geospatial_plugin.ts diff --git a/custom_import_map/server/clusters/index.ts b/server/clusters/index.ts similarity index 100% rename from custom_import_map/server/clusters/index.ts rename to server/clusters/index.ts diff --git a/custom_import_map/server/index.ts b/server/index.ts similarity index 100% rename from custom_import_map/server/index.ts rename to server/index.ts diff --git a/custom_import_map/server/plugin.ts b/server/plugin.ts similarity index 100% rename from custom_import_map/server/plugin.ts rename to server/plugin.ts diff --git a/custom_import_map/server/routes/geospatial.ts b/server/routes/geospatial.ts similarity index 100% rename from custom_import_map/server/routes/geospatial.ts rename to server/routes/geospatial.ts diff --git a/custom_import_map/server/routes/index.ts b/server/routes/index.ts similarity index 100% rename from custom_import_map/server/routes/index.ts rename to server/routes/index.ts diff --git a/custom_import_map/server/routes/opensearch.ts b/server/routes/opensearch.ts similarity index 100% rename from custom_import_map/server/routes/opensearch.ts rename to server/routes/opensearch.ts diff --git a/custom_import_map/server/saved_objects/capabilities_provider.ts b/server/saved_objects/capabilities_provider.ts similarity index 100% rename from custom_import_map/server/saved_objects/capabilities_provider.ts rename to server/saved_objects/capabilities_provider.ts diff --git a/custom_import_map/server/saved_objects/index.ts b/server/saved_objects/index.ts similarity index 100% rename from custom_import_map/server/saved_objects/index.ts rename to server/saved_objects/index.ts diff --git a/custom_import_map/server/saved_objects/map_saved_object.ts b/server/saved_objects/map_saved_object.ts similarity index 100% rename from custom_import_map/server/saved_objects/map_saved_object.ts rename to server/saved_objects/map_saved_object.ts diff --git a/custom_import_map/server/services/geospatial_service.js b/server/services/geospatial_service.js similarity index 100% rename from custom_import_map/server/services/geospatial_service.js rename to server/services/geospatial_service.js diff --git a/custom_import_map/server/services/index.ts b/server/services/index.ts similarity index 100% rename from custom_import_map/server/services/index.ts rename to server/services/index.ts diff --git a/custom_import_map/server/services/opensearch_service.js b/server/services/opensearch_service.js similarity index 100% rename from custom_import_map/server/services/opensearch_service.js rename to server/services/opensearch_service.js diff --git a/custom_import_map/server/services/utils/constants.ts b/server/services/utils/constants.ts similarity index 100% rename from custom_import_map/server/services/utils/constants.ts rename to server/services/utils/constants.ts diff --git a/custom_import_map/server/types.ts b/server/types.ts similarity index 100% rename from custom_import_map/server/types.ts rename to server/types.ts diff --git a/custom_import_map/test/enzyme.js b/test/enzyme.js similarity index 100% rename from custom_import_map/test/enzyme.js rename to test/enzyme.js diff --git a/custom_import_map/test/jest.config.js b/test/jest.config.js similarity index 100% rename from custom_import_map/test/jest.config.js rename to test/jest.config.js diff --git a/custom_import_map/test/mocks/styleMock.js b/test/mocks/styleMock.js similarity index 100% rename from custom_import_map/test/mocks/styleMock.js rename to test/mocks/styleMock.js diff --git a/custom_import_map/test/polyfills.js b/test/polyfills.js similarity index 100% rename from custom_import_map/test/polyfills.js rename to test/polyfills.js diff --git a/custom_import_map/test/polyfills/mutationObserver.js b/test/polyfills/mutationObserver.js similarity index 100% rename from custom_import_map/test/polyfills/mutationObserver.js rename to test/polyfills/mutationObserver.js diff --git a/custom_import_map/test/setup.jest.js b/test/setup.jest.js similarity index 100% rename from custom_import_map/test/setup.jest.js rename to test/setup.jest.js diff --git a/custom_import_map/test/setupTests.js b/test/setupTests.js similarity index 100% rename from custom_import_map/test/setupTests.js rename to test/setupTests.js diff --git a/custom_import_map/translations/ja-JP.json b/translations/ja-JP.json similarity index 100% rename from custom_import_map/translations/ja-JP.json rename to translations/ja-JP.json diff --git a/custom_import_map/tsconfig.json b/tsconfig.json similarity index 100% rename from custom_import_map/tsconfig.json rename to tsconfig.json diff --git a/custom_import_map/yarn.lock b/yarn.lock similarity index 100% rename from custom_import_map/yarn.lock rename to yarn.lock