标签: javascript json typescript include require
我的项目中有很少的json-config文件。我想将它包含在ts脚本中。
我不想在运行时加载文件或其他东西。我只需要在我的ts文件中获取我的json文件内容,就好像它在文件中的位置一样(编译后到js文件)
说..
var jsonFile = include("path_to_file.json"); //in file: {"x":1}
编译到
var jsonFile = {"x":1};
是否有可能(没有任何“脚本加载”)?