Currently, I am transitioning from using Angular 1.4 to getting prepared for the release of Angular 2. As part of this process, I am updating all my directives to utilize the restrict: 'E'
tag instead of restrict: 'A'
.
However, I have noticed that in order to do this, I am required to manually add each custom tag to my sass file and specify that I want it to be treated as a div element. This involves setting display:block and other bootstrap defaults.
Is there a more efficient way to accomplish this task without individually including every custom tag in my sass file? Perhaps through some sort of global setting?