aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-rollup/packages/ui/rollup.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-rollup/packages/ui/rollup.config.js')
-rw-r--r--examples/with-rollup/packages/ui/rollup.config.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/examples/with-rollup/packages/ui/rollup.config.js b/examples/with-rollup/packages/ui/rollup.config.js
deleted file mode 100644
index 851f95f..0000000
--- a/examples/with-rollup/packages/ui/rollup.config.js
+++ /dev/null
@@ -1,10 +0,0 @@
-import typescript from "@rollup/plugin-typescript";
-
-export default {
- input: "index.tsx",
- output: {
- file: "dist/index.js",
- format: "cjs",
- },
- plugins: [typescript()],
-};