node项目,使用typescript时,如何引用使用json文件
Posted Again
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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,
}
}
以上是关于node项目,使用typescript时,如何引用使用json文件的主要内容,如果未能解决你的问题,请参考以下文章
在 typescript 中引用 VSS.SDK。错误:未定义 VSS
如何在同一个项目中将 Typescript 与 Angular CLI 和 Express/Node 一起使用?