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:
parent
35603cadaf
commit
511b778fd0
@ -25,7 +25,7 @@
|
||||
"paths": {
|
||||
"@components/*": ["components/*"],
|
||||
"@/*": ["src/*"],
|
||||
"@pswui-lib/*": ["lib/*"]
|
||||
"@pswui-lib": ["lib.tsx"]
|
||||
}
|
||||
},
|
||||
"include": ["components", "src", "lib"],
|
||||
|
@ -28,7 +28,7 @@ export default defineConfig({
|
||||
alias: {
|
||||
"@components": resolve(__dirname, "./components"),
|
||||
"@": resolve(__dirname, "./src"),
|
||||
"@pswui-lib": resolve(__dirname, "./lib"),
|
||||
"@pswui-lib": resolve(__dirname, "./lib.tsx"),
|
||||
},
|
||||
},
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user