Last active
January 9, 2019 11:26
-
-
Save minipai/a352268784be2d43ca5c34d7b0a03e98 to your computer and use it in GitHub Desktop.
jsconfig.json for Stackla web
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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "es2018", | |
"jsx": "react", | |
"baseUrl": "./app/media/", | |
"paths": { | |
"admin/*": [ | |
"js/admin/*" | |
], | |
"common/*": [ | |
"js/common/*" | |
], | |
"domains/*": [ | |
"js/common/domains/*" | |
], | |
"utils/*": [ | |
"js/common/utils/*" | |
], | |
"stackla-uikit/*": [ | |
"components/stackla-uikit/*" | |
], | |
} | |
}, | |
"include": [ | |
"app/media/js/admin/**/*", | |
"app/media/js/common/**/*", | |
"app/media/js/myaccount/**/*", | |
"app/media/components/stackla-uikit/**/*" | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment