From aa4aaf1c2ec8af967279041d7b0f0339acf619bf Mon Sep 17 00:00:00 2001 From: Hyuk Kwon Date: Sun, 11 Feb 2024 15:59:27 +0900 Subject: [PATCH] Setup ui components package #3 - Removed unused configs --- packages/ui/vite.config.ts | 2 +- tsconfig.base.json | 20 -------------------- 2 files changed, 1 insertion(+), 21 deletions(-) delete mode 100644 tsconfig.base.json diff --git a/packages/ui/vite.config.ts b/packages/ui/vite.config.ts index 27cd11b..b1f4a80 100644 --- a/packages/ui/vite.config.ts +++ b/packages/ui/vite.config.ts @@ -57,7 +57,7 @@ export default defineConfig({ }, }, rollupOptions: { - external: ["react", "react/jsx-runtime", "react-dom", "tailwindcss"], + external: ["react", "react/jsx-runtime", "react-dom"], }, copyPublicDir: false, }, diff --git a/tsconfig.base.json b/tsconfig.base.json deleted file mode 100644 index b73cce6..0000000 --- a/tsconfig.base.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "rootDir": ".", - "sourceMap": true, - "declaration": false, - "moduleResolution": "node", - "emitDecoratorMetadata": true, - "experimentalDecorators": true, - "importHelpers": true, - "target": "es2015", - "module": "esnext", - "lib": ["es2020", "dom"], - "skipLibCheck": true, - "skipDefaultLibCheck": true, - "baseUrl": ".", - "paths": {} - }, - "exclude": ["node_modules", "tmp"] -}