diff --git a/extensions/shared.webpack.config.js b/extensions/shared.webpack.config.js index ad9d70c2490..097234e24b2 100644 --- a/extensions/shared.webpack.config.js +++ b/extensions/shared.webpack.config.js @@ -59,7 +59,7 @@ function withNodeDefaults(/**@type WebpackConfig & { context: string }*/extConfi 'electron': 'commonjs electron', // ignored to avoid bundling from node_modules 'vscode': 'commonjs vscode', // ignored because it doesn't exist, 'applicationinsights-native-metrics': 'commonjs applicationinsights-native-metrics', // ignored because we don't ship native module - '@azure/functions-core': 'commonjs azure/functions-core', // optioinal dependency of appinsights that we don't use + '@azure/functions-core': 'commonjs azure/functions-core', // optional dependency of appinsights that we don't use '@opentelemetry/tracing': 'commonjs @opentelemetry/tracing', // ignored because we don't ship this module '@opentelemetry/instrumentation': 'commonjs @opentelemetry/instrumentation', // ignored because we don't ship this module '@azure/opentelemetry-instrumentation-azure-sdk': 'commonjs @azure/opentelemetry-instrumentation-azure-sdk', // ignored because we don't ship this module @@ -150,7 +150,7 @@ function withBrowserDefaults(/**@type WebpackConfig & { context: string }*/extCo externals: { 'vscode': 'commonjs vscode', // ignored because it doesn't exist, 'applicationinsights-native-metrics': 'commonjs applicationinsights-native-metrics', // ignored because we don't ship native module - '@azure/functions-core': 'commonjs azure/functions-core', // optioinal dependency of appinsights that we don't use + '@azure/functions-core': 'commonjs azure/functions-core', // optional dependency of appinsights that we don't use '@opentelemetry/tracing': 'commonjs @opentelemetry/tracing', // ignored because we don't ship this module '@opentelemetry/instrumentation': 'commonjs @opentelemetry/instrumentation', // ignored because we don't ship this module '@azure/opentelemetry-instrumentation-azure-sdk': 'commonjs @azure/opentelemetry-instrumentation-azure-sdk', // ignored because we don't ship this module diff --git a/test/unit/electron/renderer.html b/test/unit/electron/renderer.html index 54c93d27529..3af99562e15 100644 --- a/test/unit/electron/renderer.html +++ b/test/unit/electron/renderer.html @@ -42,7 +42,7 @@ const basePath = require('path').join(__dirname, `../../../${outdir}/`); const baseUrl = require('url').pathToFileURL(basePath); - // Tests run in a renderer that IS node-enabled. Wo we will encounter imports for node-modules which isn't + // Tests run in a renderer that IS node-enabled. So we will encounter imports for node-modules which isn't // supported by blink/chromium. To work around this, we generate an import map that maps all node modules // to a blob that exports all properties of the module as named exports and the module itself as default.