node项目,使用typescript时,如何引用使用json文件

【node项目,使用typescript时,如何引用使用json文件】?之前为了找到答案花了很多时间。为了方便和我遇到一样问题的道友,以及我日后的使用。特写一篇短文。
?答案很简单,只需要配置下tsconfig.json文件就行了,但是我很抱歉的告诉各位, 官方配置文档上找不到对应的字段
?答案出自官网的文档更新版本 Typescript2.9。
? 即添加compilerOptions配置项"resolveJsonModule": true即可。我的tsconfig.json如下

{ "compileOnSave": true, "compilerOptions": { "module": "commonjs", "declaration": true, "removeComments": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "allowSyntheticDefaultImports": true, "target": "es2017", "sourceMap": true, "outDir": "./dist", "baseUrl": "./", "incremental": true, "resolveJsonModule": true, } }

    推荐阅读