我收到此消息 “找不到模块'react-geocode'的声明文件。” 所以我试图修改tsconfig.json但找不到它在哪里
答案 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)