Created
August 7, 2019 14:31
-
-
Save artursmirnov/7deb80d2eefe747a885c2a5fca101235 to your computer and use it in GitHub Desktop.
Projections for Ember application (classic layout)
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
{ | |
"app/models/*.js": { | |
"type": "model", | |
"alternate": "app/adapters/{}.js" | |
}, | |
"app/adapters/*.js": { | |
"type": "adapter", | |
"alternate": "app/serializers/{}.js" | |
}, | |
"app/serializers/*.js": { | |
"type": "serializer", | |
"alternate": "app/models/{}.js" | |
}, | |
"app/routes/*.js": { | |
"type": "route", | |
"alternate": "app/controllers/{}.js" | |
}, | |
"app/controllers/*.js": { | |
"type": "controller", | |
"alternate": "app/templates/{}.hbs" | |
}, | |
"app/templates/*.hbs": { | |
"type": "template", | |
"alternate": "app/routes/{}.js" | |
}, | |
"app/components/*.js": { | |
"type": "component", | |
"alternate": "app/templates/components/{}.hbs" | |
}, | |
"app/components/*/component.js": { | |
"type": "component", | |
"alternate": "app/components/{}/template.hbs" | |
}, | |
"app/templates/components/*.hbs": { | |
"type": "ctemplate", | |
"alternate": "app/components/{}.js" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment