Typescript Error: TS2339: Property 'span' does not exist on type 'JSX.IntrinsicElements'
- 在使用dom节点的文件头部引入React
import React from 'react'; - 在
tsconfig.json文件中增加"jsx": "react"(或者"jsx": "preserve")选项。
{
"extends": "./src/.umi/tsconfig.json",
"compilerOptions": {
"jsx": "react"
//"jsx": "preserve",
}
}