Created by: jimmyhmiller
This addresses #253 (closed). Nothing should change by default, but you are able to set your NODE_PATH environment variable if you want absolute path imports.
Test Plan
I tested this by changing import App from './App';
to import App from 'App';
in index.js. Without setting NODE_PATH
run and build will now fail because it can't find the module. After setting the the NODE_PATH
to `./template/src' the project both builds and runs.
I also generated a new project, which you can find here that uses this absolute import. I did the equivalent change in the tests directory and the tests pass.
Let me know if you have any questions or any suggestions.