mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* core webpack dependencies as externals Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * use fork-ts-checker-webpack-plugin Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> --------- Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
17 lines
392 B
TypeScript
17 lines
392 B
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import webpackLensCommon from "./common";
|
|
import webpackLensMain from "./main";
|
|
import { webpackLensRenderer } from "./renderer";
|
|
|
|
const config = [
|
|
webpackLensMain(),
|
|
webpackLensRenderer(),
|
|
webpackLensCommon(),
|
|
];
|
|
|
|
export default config;
|