我不明白爲什麼找不到它。typescript:找不到模塊'react'
$ cat tsconfig.json
{
"compilerOptions": {
"sourceMap": true,
"target": "es6",
"jsx": "react",
"types": [
"lodash",
"react",
"react-dom"
]
}
}
$ tree node_modules/@types
node_modules/@types/
├── lodash
│ ├── README.md
│ ├── index.d.ts
│ ├── package.json
│ └── types-metadata.json
├── react
│ ├── README.md
│ ├── index.d.ts
│ ├── package.json
│ └── types-metadata.json
└── react-dom
├── README.md
├── index.d.ts
├── package.json
├── server.d.ts
└── types-metadata.json
導入組件文件。
// src/components/component.tsx
import * as React from "react";
什麼給?
你是如何導入反應的? –
您是否嘗試過'導入React = require(「react」);'而不是? –
使用'--traceResolution'運行的輸出會有幫助 –