refactor(react): change path of pswui-lib in vite and tsconfig

The paths were updated for the alias '@pswui-lib' in both vite.config.ts and tsconfig.json files. The new path now points to 'lib.tsx' from 'lib'.
This commit is contained in:
p-sw 2024-06-11 17:45:33 +09:00
parent 35603cadaf
commit 511b778fd0
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@
"paths": { "paths": {
"@components/*": ["components/*"], "@components/*": ["components/*"],
"@/*": ["src/*"], "@/*": ["src/*"],
"@pswui-lib/*": ["lib/*"] "@pswui-lib": ["lib.tsx"]
} }
}, },
"include": ["components", "src", "lib"], "include": ["components", "src", "lib"],

View File

@ -28,7 +28,7 @@ export default defineConfig({
alias: { alias: {
"@components": resolve(__dirname, "./components"), "@components": resolve(__dirname, "./components"),
"@": resolve(__dirname, "./src"), "@": resolve(__dirname, "./src"),
"@pswui-lib": resolve(__dirname, "./lib"), "@pswui-lib": resolve(__dirname, "./lib.tsx"),
}, },
}, },
}); });