-
-
Save jrock2004/18b87c9c95190bea52abf877afb65fff to your computer and use it in GitHub Desktop.
Projections Ember Pods & TS
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/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