-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 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) - remove "@test" from the "root" tsconfig file because it's not needed in banners or src code
- Loading branch information
Showing
2 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
{ | ||
"extends": "../tsconfig.json", | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"paths": { | ||
"@banners/*": [ "banners/*" ] | ||
} | ||
"@banners/*": [ "banners/*" ], | ||
"@test/*": [ "test/*" ], | ||
"@src/*": [ "src/*" ], | ||
"@environment/*": [ "src/environment/prod/*", "src/environment/dev/*" ] | ||
}, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters