我的本地项目在哪里可以找到tsconfig.json文件

时间:2020-02-14 05:44:02

标签: android reactjs react-native native

我收到此消息 “找不到模块'react-geocode'的声明文件。” 所以我试图修改tsconfig.json但找不到它在哪里

2 个答案:

答案 0 :(得分:1)

在项目文件夹的根目录下,您可以拥有tsconfig.json

如果没有,请按照以下屏幕截图创建一个

https://facebook.github.io/react-native/docs/typescript

{
  "compilerOptions": {
    "allowJs": true,
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "isolatedModules": true,
    "jsx": "react",
    "lib": ["es6"],
    "moduleResolution": "node",
    "noEmit": true,
    "strict": true,
    "target": "esnext"
  },
  "exclude": [
    "node_modules",
    "babel.config.js",
    "metro.config.js",
    "jest.config.js"
  ]
}

答案 1 :(得分:1)

enter image description here

在项目文件夹的根目录下,您可以拥有tsconfig.json