chore: drop vestigial $lib alias

$lib pointed at src/lib/, which does not exist, and nothing imported it.
Removed the dead alias from all five declaration sites (tsconfig plus the
vite and three vitest configs). A stray $lib import now fails fast as an
unknown alias instead of resolving to a missing path.
This commit is contained in:
Ilia Mashkov
2026-06-02 23:17:27 +03:00
parent 60e115309c
commit 1c6427c586
5 changed files with 0 additions and 5 deletions
-1
View File
@@ -23,7 +23,6 @@ export default defineConfig({
resolve: {
alias: {
$lib: path.resolve(__dirname, './src/lib'),
$app: path.resolve(__dirname, './src/app'),
$shared: path.resolve(__dirname, './src/shared'),
$entities: path.resolve(__dirname, './src/entities'),