@nativescript-dom/react-types
为 @nativescript/core 视图提供 TypeScript 定义,作为 JSX 内置元素用于 react
npm i --save @nativescript-dom/react-types

react-types

为 react-nativescript 提供的 TypeScript 类型,在代码编辑器中提供正确的和完整的智能感知。

安装

  1. 在项目中安装 corereact 类型
npm install @nativescript-dom/core-types @nativescript-dom/react-types --save-dev
  1. 按照以下方式配置 tsconfig.json
{
"compilerOptions": {
...
"types": [
"node",
"@nativescript-dom/core-types",
"@nativescript-dom/react-types"
],
...
}

就这样,享受完整的类型化 react-nativescript 体验。

MIT 许可证