我有一堆用 Inferno 编写的 TSX 组件(类似于 React/Preact)。我只需要转换 JSX 方面的 .ts 版本。我使用它的环境只支持 TypeScript,而 Inferno JSX 转换器只为 Babel 编写。我相信我可以用 Babel 做到这一点,但不确定要添加哪些标志。
这是我的脚本示例:
import { Component, linkEvent } from 'inferno';
import './index.scss';
interface HeaderProps {
name: string,
address: string
}
export default class Header extends Component {
render(props:HeaderProps) {
return (
<header class="wrap">
<img class="logo" src="logo.svg" />
<h1>{ props.name }</h1>
<img src="arrow.svg" />
</header>
);
}
}
在我编译完这个脚本之后,应该保留任何 TS,例如接口,但是应该将 JSX 转换为createVNode()
函数。执行此操作的 babel 插件是:https ://github.com/infernojs/babel-plugin-inferno
这是我当前的.babelrc:
{
"compact": false,
"presets": [
[
"@babel/preset-env",
{
"loose": true,
"targets": {
"browsers": ["ie >= 11", "safari > 10"]
}
}
],
[
"@babel/typescript",
{ "isTSX": true, "allExtensions": true }
]
],
"plugins": [
["babel-plugin-inferno",
{ "imports": true }],
"@babel/plugin-transform-runtime",
[
"@babel/plugin-proposal-class-properties",
{ "loose": true }
]
]
}
我包含@babel/typescript
在 rc 文件中,因为它需要能够读取 TS 而不会抱怨语法。但是,应该保留输出。
如果这不是最好的方法,您能否就更有效的转换方法提出建议?附言。我不能使用 TS JSX 转换器,它与 Inferno 不兼容。
这是我的 tsconfig:
{
"compilerOptions": {
"pretty": true,
"target": "es5",
"module": "esnext",
"allowSyntheticDefaultImports": true,
"preserveConstEnums": true,
"sourceMap": true,
"moduleResolution": "node",
"lib": ["es2017", "dom"],
"types": [
"inferno"
],
"jsx": "preserve",
"noUnusedLocals": true,
"baseUrl": "./src",
"noEmit": true,
"skipLibCheck": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
},
"include": [
"src/**/*",
"node_modules/inferno/dist/index.d.ts"
]
}