I have a large application, right now most templates are in the DOM but some re-usable ones are in script tags.
Would there be any benefit in pre-compiling all of these? Is there even such a thing for native templates? I could use jQuery Templates, but I miss the control-flow bindings. This will need to be a performant application and I know pre-compiled templates perform the best. I was hoping to pre-compile native templates instead of resorting to jQuery tmpl or Underscore.
Thoughts?