打字稿的声明模块有正文和不带正文



我有一个.mdx文件。

mdx.d.ts中具有以下内容:

/// <reference types="@mdx-js/loader" />
import { ComponentType } from "react";
declare module '*.mdx' {
const Component: ComponentType;
export default Component;
}

制作

import Comp from "./Comp.mdx";

投掷";TS2307:找不到模块"/"Comp.mdx"或其相应的类型声明">

然而,只有以下作品:

declare module '*.mdx';

为什么?

tsconfig.json:

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
},
"include": ["**/*.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}

///从"导入{ComponentType};反应";;

不知道为什么,但去掉重要的句子,让它发挥作用。将ComponentType更改为any。

相关内容

  • 没有找到相关文章

最新更新