From f68e54670fb89e513e2e5bdc48f014fa8e38dbc6 Mon Sep 17 00:00:00 2001 From: Shinwoo PARK Date: Thu, 13 Jun 2024 18:05:28 +0000 Subject: [PATCH] feat: add import alias path for pswui --- tsconfig.json | 6 +++--- vite.config.ts | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 551a6ad..7af0bc3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -23,11 +23,11 @@ /* Path */ "baseUrl": "./", "paths": { - "@components/*": ["components/*"], + "@pswui/*": ["src/pswui/*"], "@/*": ["src/*"], - "@pswui-lib": ["lib.tsx"] + "@pswui-lib": ["src/pswui/lib.tsx"] } }, - "include": ["components", "src", "./lib.tsx"], + "include": ["src"], "references": [{ "path": "./tsconfig.node.json" }] } \ No newline at end of file diff --git a/vite.config.ts b/vite.config.ts index d5b3d22..248c972 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -26,9 +26,9 @@ export default defineConfig({ }, resolve: { alias: { - "@components": resolve(__dirname, "./components"), + "@pswui": resolve(__dirname, "./src/pswui/components"), "@": resolve(__dirname, "./src"), - "@pswui-lib": resolve(__dirname, "./lib.tsx"), + "@pswui-lib": resolve(__dirname, "./src/pswui/lib.tsx"), }, }, }); \ No newline at end of file