Skip to content

Commit

Permalink
Add alias for public folder in tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonsouto committed Jan 19, 2025
1 parent 141fe1b commit 283e33d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 283e33d

Please sign in to comment.