有没有办法在编译typescript期间存储在字符串中返回字符串的函数的结果

时间:2017-04-12 20:14:58

标签: javascript typescript compilation

我有几个打字机功能相互链接以生成特定模板。我想在我的应用程序的另一部分加载此模板,但我不希望每次客户端加载应用程序时重新处理它。

是否存在可以转换此打字稿文件的方式或库:

function a(){
  return "string1"
}

function b(){
  return "string2"
}

function join(){
  return a + b
}

export let renderedOutput = join()

进入这个js文件:每次加载应用程序时预渲染并且不渲染,我只想存储结果。

renderedOutput = "string1string2" // stores the result"string1string2"

我查看了tsc,uglify,minify的编译选项。我不确切地知道我想要做什么。任何建议将不胜感激。

0 个答案:

没有答案