Created
August 20, 2018 19:55
-
-
Save alexlafroscia/b3264afb1c9023be1052169defaa3e2f to your computer and use it in GitHub Desktop.
Ember App jsconfig.json
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
{ | |
"compilerOptions": { | |
"target": "es6", | |
"experimentalDecorators": true, | |
"baseUrl": ".", | |
"paths": { | |
"origin-story-core-ui/*": ["./app/*"] | |
} | |
}, | |
"exclude": [ | |
"coverage", | |
"dist", | |
"node_modules", | |
"recordings", | |
"temp", | |
"tmp", | |
"translations", | |
"vendor" | |
], | |
"typeAcquisition": { | |
"enable": true, | |
"include": ["ember", "ember-data", "qunit", "ember-qunit"] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for sharing this!