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,
}
}
推荐阅读
- 由浅入深理解AOP
- 【译】20个更有效地使用谷歌搜索的技巧
- mybatisplus如何在xml的连表查询中使用queryWrapper
- MybatisPlus|MybatisPlus LambdaQueryWrapper使用int默认值的坑及解决
- MybatisPlus使用queryWrapper如何实现复杂查询
- Node.js中readline模块实现终端输入
- iOS中的Block
- Linux下面如何查看tomcat已经使用多少线程
- 使用composer自动加载类文件
- android|android studio中ndk的使用