问题现象
在typescript中引入json文件,vscode有以下报错
1.png

解决方案
根据提示,我们在tsconfig.json中加入此配置后就能解决

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

2.png

标签: none

添加新评论