Last active
August 13, 2019 20:33
-
-
Save mupkoo/f2930673edfb7b755d789f2d8f68f4dc to your computer and use it in GitHub Desktop.
jsconfig.json for Ember CLI project
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", | |
"experimentalDecorators": true, | |
"baseUrl": ".", | |
"paths": { | |
"{put-your-app-name-here}/tests/*": ["./tests/*"], | |
"{put-your-app-name-here}/mirage/*": ["./mirage/*"], | |
"{put-your-app-name-here}/*": ["./app/*"] | |
} | |
}, | |
"exclude": [ | |
"node_modules", | |
"bower_components", | |
"tmp", | |
"vendor", | |
".git", | |
"dist" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment