@HerringtonDarkholme I had forgotten about this issue. I had resolved it by doing exactly as you suggested, reading the docs ;)
For anyone else with this question, here is an example of a custom setup:
let g:neomake_typescript_tsc_maker = {
\ 'args': [
\ '-m', 'commonjs', '--noEmit', '--target', 'ES5', '--experimentalDecorators'
\ ],
\ 'errorformat':
\ '%E%f %#(%l\,%c): error %m,' .
\ '%E%f %#(%l\,%c): %m,' .
\ '%Eerror %m,' .
\ '%C%\s%\+%m'
\ }
And you would just call the maker as usual
let g:neomake_typescript_enabled_makers = ['tsc']