当前版本的react-admin不导出类型定义。为了使您的项目能够编译,您需要创建
index.d.ts文件并进行修改
tsconfig.json。
├── @types│ └── react-admin│ └── index.d.ts└── tsconfig.json// tsconfig.json{ ... "compilerOptions": { ... "typeRoots": ["./@types"], ... }, ...}// index.d.tsdeclare module 'react-admin';


