Created
February 14, 2023 12:32
-
-
Save louicoder/08f04e2597ac545db8c211ea5c0b98db to your computer and use it in GitHub Desktop.
This is a file that helps you with shortening file imports in Javascript projects
This file contains hidden or 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
{ | |
"compilerOptions": { | |
"baseUrl": ".", | |
"paths": { | |
"src/*": [ | |
"./src/*" | |
] | |
} | |
}, | |
"include": [ | |
"src" | |
], | |
"exclude": [ | |
"node_modules" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment