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
Show hidden characters
{ | |
"compilerOptions": { | |
// Set the base URL for all relative module imports | |
"baseUrl": ".", | |
// Define path aliases for shorter and cleaner imports | |
"paths": { | |
"@src/*": ["src/*"], | |
"@components/*": ["src/components/*"], | |
"@utils/*": ["src/utils/*"], |
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
{ | |
// JavaScript compiler options | |
"compilerOptions": { | |
// Set the base URL for all relative module imports. | |
// This helps in having cleaner and shorter import paths. | |
"baseUrl": ".", | |
// Define path aliases for commonly used directories. | |
// This improves the readability of import statements. | |
"paths": { |