Skip to content

Commit

Permalink
Fix absolute path configuration
Browse files Browse the repository at this point in the history
- add all paths that should be available in the test folder to tsconfig.test.json
("extending" the list of paths from the parent config file is not enough)
  • Loading branch information
moiikana committed Feb 19, 2025
1 parent 3a02f48 commit cc80e04
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
"extends": "../tsconfig.json",
"compilerOptions": {
"paths": {
"@banners/*": [ "banners/*" ]
"@banners/*": [ "banners/*" ],
"@test/*": [ "test/*" ],
"@src/*": [ "src/*" ],
"@environment/*": [ "src/environment/prod/*", "src/environment/dev/*" ]
}
}
}

0 comments on commit cc80e04

Please sign in to comment.