我刚刚为我的react-native项目安装了打字稿,当我运行该项目时,打包器中显示以下错误消息:
错误:捆绑失败:错误:文件 “ /Users/user/React/Test/src/App.tsx”不在 'rootDir''./src'。 “ rootDir”应包含所有源文件。
我从项目的根目录中删除了App.js文件,并在src / App.tsx中创建了一个新的App.tsx,所以我不明白为什么会这样。
我的tsconfig.json文件
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"jsx": "react",
"outDir": "./dist",
"rootDir": "./src",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"skipLibCheck": true,
"declaration": true,
"noUnusedLocals": true
},
"exclude": [
"node_modules",
"dist",
"__tests__"
]
}