JSX 错误:“JSX.IntrinsicElements”类型上不存在属性

70 阅读1分钟

Typescript Error: TS2339: Property 'span' does not exist on type 'JSX.IntrinsicElements'

  1. 在使用dom节点的文件头部引入React import React from 'react';
  2. 在 tsconfig.json 文件中增加 "jsx": "react"(或者 "jsx": "preserve")选项。
{
  "extends": "./src/.umi/tsconfig.json",
  "compilerOptions": {
    "jsx": "react"
    //"jsx": "preserve",
  }
}