mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* move node-fetch to separate package Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fix node-fetch package runtime error Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fix test:unit nx dependency Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fix test:unit nx dependency Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * Add prepare step for node-fetch Signed-off-by: Sebastian Malton <sebastian@malton.name> * Update lock Signed-off-by: Sebastian Malton <sebastian@malton.name> * Remove dead comment Signed-off-by: Sebastian Malton <sebastian@malton.name> * Remove unnecessary fetchModuleInjectable Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> Signed-off-by: Sebastian Malton <sebastian@malton.name> Co-authored-by: Sebastian Malton <sebastian@malton.name>
46 lines
948 B
TypeScript
46 lines
948 B
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
import path from "path";
|
|
|
|
export default {
|
|
entry: "./src/index.ts",
|
|
output: {
|
|
path: path.resolve(__dirname, "dist"),
|
|
filename: "index.js",
|
|
library: {
|
|
type: "commonjs",
|
|
},
|
|
clean: true,
|
|
asyncChunks: false, // This is required so that only one file is created
|
|
},
|
|
mode: "production",
|
|
target: "electron-renderer",
|
|
optimization: {
|
|
concatenateModules: true,
|
|
minimize: true,
|
|
},
|
|
externalsPresets: {
|
|
node: true,
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(ts|tsx)$/,
|
|
loader: "ts-loader",
|
|
options: {
|
|
compilerOptions: {
|
|
declaration: true,
|
|
sourceMap: false,
|
|
outDir: path.resolve("./dist/"),
|
|
},
|
|
},
|
|
}
|
|
]
|
|
},
|
|
resolve: {
|
|
extensions: [".ts"],
|
|
},
|
|
};
|