From 283e33d0eaa8ba0a7a1e9aa88220fea160c404f7 Mon Sep 17 00:00:00 2001 From: Wilson Souto Date: Sun, 19 Jan 2025 14:07:40 -0300 Subject: [PATCH] Add alias for public folder in tsconfig.json --- tsconfig.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 86fbe01..e8c3368 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,13 +3,14 @@ { "compileOnSave": false, "compilerOptions": { - "baseUrl": "./src/", + "baseUrl": "./", "paths": { - "@app/*": ["app/*"], - "@core/*": ["app/core/*"], - "@shared/*": ["app/shared/*"], - "@modules/*": ["app/features/*"], + "@app/*": ["src/app/*"], + "@core/*": ["src/app/core/*"], + "@shared/*": ["src/app/shared/*"], + "@modules/*": ["src/app/features/*"], "@env/*": ["environments/*"], + "@public/*": ["public/*"] }, "outDir": "./dist/out-tsc", "strict": true,