fix webpack.config.js sample typing

This commit is contained in:
Martin Aeschlimann 2021-09-22 15:08:04 +02:00
Родитель 1f62cab85b
Коммит 7d59aef1e4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 2609A01E695523E3
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -119,7 +119,9 @@ The webpack configuration file is automatically generated by `yo code`. It bundl
const path = require('path');
const webpack = require('webpack');
const webExtensionConfig = /** @type WebpackConfig */ {
/** @typedef {import('webpack').Configuration} WebpackConfig **/
/** @type WebpackConfig */
const webExtensionConfig = {
mode: 'none', // this leaves the source code as close as possible to the original (when packaging we set this to 'production')
target: 'webworker', // extensions run in a webworker context
entry: {