Skip to content

Instantly share code, notes, and snippets.

@jrock2004
Forked from josemarluedke/projections.json
Last active December 19, 2019 04:08
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 jrock2004/18b87c9c95190bea52abf877afb65fff to your computer and use it in GitHub Desktop.
Save jrock2004/18b87c9c95190bea52abf877afb65fff to your computer and use it in GitHub Desktop.
Projections Ember Pods & TS
{
"app/initializers/*.js": {
"type": "initializer"
},
"app/services/*.js": {
"type": "service"
},
"app/models/*.js": {
"type": "model",
"alternate": "app/adapters/{}.js"
},
"app/adapters/*.js": {
"type": "adapter",
"alternate": "app/serializers/{}.js"
},
"app/serializers/*.js": {
"type": "serializers",
"alternate": "app/models/{}.js"
},
"app/routes/*.js": {
"type": "route",
"alternate": "app/templates/{}.hbs"
},
"app/templates/*.hbs": {
"type": "template",
"alternate": "app/controllers/{}.js"
},
"app/controllers/*.js": {
"type": "controller",
"alternate": "app/routes/*.js"
},
"app/components/*.js": {
"type": "component",
"alternate": "app/templates/components/{}.hbs"
},
"app/templates/components/*.hbs": {
"type": "ctemplate",
"alternate": "tests/integration/components/{}-test.js"
},
"tests/integration/components/*-test.js": {
"type": "component-test",
"alternate": "app/components/{}.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment