hexo renderer for typescript files.
See https://www.typescriptlang.org/docs/handbook/compiler-options.html
In _config.yml
:
render:
ts:
target: ES2015
removeComments: true
newLine: Lf
pretty: false
Or from tsconfig.json
file
render:
ts: tsconfig.json # path to tsconfig.json file
Or by API:
hexo.render.render({text: '', engine: 'ts'}, {
target: 'ES2015',
removeComments: true,
newLine: 'Lf',
pretty: false}).then(function(result){
// ...
});