Ver a proveniência

Avoids duplicate bundling

main
Eric Amodio há 1 ano
ascendente
cometimento
168d81954c
1 ficheiros alterados com 9 adições e 0 eliminações
  1. +9
    -0
      webpack.config.js

+ 9
- 0
webpack.config.js Ver ficheiro

@ -478,8 +478,17 @@ function getWebviewsConfig(mode, env) {
resolve: { resolve: {
alias: { alias: {
'@env': path.resolve(__dirname, 'src', 'env', 'browser'), '@env': path.resolve(__dirname, 'src', 'env', 'browser'),
'@microsoft/fast-foundation': path.resolve(
__dirname,
'node_modules/@microsoft/fast-foundation/dist/esm/index.js',
),
'@microsoft/fast-react-wrapper': path.resolve(
__dirname,
'node_modules/@microsoft/fast-react-wrapper/dist/esm/index.js',
),
react: path.resolve(__dirname, 'node_modules', 'react'), react: path.resolve(__dirname, 'node_modules', 'react'),
'react-dom': path.resolve(__dirname, 'node_modules', 'react-dom'), 'react-dom': path.resolve(__dirname, 'node_modules', 'react-dom'),
tslib: path.resolve(__dirname, 'node_modules/tslib/tslib.es6.js'),
}, },
extensions: ['.ts', '.tsx', '.js', '.jsx', '.json'], extensions: ['.ts', '.tsx', '.js', '.jsx', '.json'],
modules: [basePath, 'node_modules'], modules: [basePath, 'node_modules'],

Carregando…
Cancelar
Guardar