Skip to content

OpportunityLiu/hexo-renderer-ts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hexo-renderer-ts

hexo renderer for typescript files.

Options

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){
  // ...
});