我正在将现有的 React 代码迁移到 TypeScript,但遇到了很多问题,其中之一是在创建.js
文件时出现很多“找不到名称”错误.ts
。
这是有问题的代码:
import React from 'react';
const Footer = ({ children, inModal }) => (
<footer className={'tableBottomPanel' + (inModal ? " in-modal" : "") }>
<div>
{children}
</div>
</footer>
);
export default Footer;
从<footer>
to 开始的五行</footer>
用红色下划线标出并给我各种错误,这取决于我将鼠标悬停在哪里,例如:
- 找不到名称“页脚”。
- '>' 预期
- 找不到名称“div”
- 未终止的正则表达式文字
- 运算符 '<' 不能应用于类型 'boolean' 和 'RegExp'
这是我的tsconfig.json
文件:
{
"compilerOptions": {
"outDir": "./dist/", // path to output directory
"sourceMap": true, // allow sourcemap support
"strictNullChecks": true, // enable strict null checks as a best practice
"module": "es6", // specify module code generation
"jsx": "react", // use typescript to transpile jsx to js
"target": "es5", // specify ECMAScript target version
"allowJs": true, // allow a partial TypeScript and JavaScript codebase
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"lib": [
"es6",
"dom"
],
"types": [
"node"
]
},
"include": [
"./src/"
]
}
我非常困惑,非常感谢一些帮助!