From 6e6e540a3537117707d55e26ee56164f63048d16 Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Thu, 1 Jun 2023 11:05:39 +0300 Subject: [PATCH] Add table package tsconfig and webpack.config Signed-off-by: Alex Andreev --- packages/table/tsconfig.json | 4 ++++ packages/table/webpack.config.js | 1 + 2 files changed, 5 insertions(+) create mode 100644 packages/table/tsconfig.json create mode 100644 packages/table/webpack.config.js diff --git a/packages/table/tsconfig.json b/packages/table/tsconfig.json new file mode 100644 index 0000000000..c440e25379 --- /dev/null +++ b/packages/table/tsconfig.json @@ -0,0 +1,4 @@ +{ + "extends": "@k8slens/typescript/config/base.json", + "include": ["**/*.ts"] +} \ No newline at end of file diff --git a/packages/table/webpack.config.js b/packages/table/webpack.config.js new file mode 100644 index 0000000000..c1089b1b44 --- /dev/null +++ b/packages/table/webpack.config.js @@ -0,0 +1 @@ +module.exports = require("@k8slens/webpack").configForNode; \ No newline at end of file