Skip to content

Instantly share code, notes, and snippets.

@mupkoo
Last active August 13, 2019 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mupkoo/f2930673edfb7b755d789f2d8f68f4dc to your computer and use it in GitHub Desktop.
Save mupkoo/f2930673edfb7b755d789f2d8f68f4dc to your computer and use it in GitHub Desktop.
jsconfig.json for Ember CLI project
{
"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