我想将index.d.ts拆分为单独的文件。但是,当我使用' import'所有类型都是未定义的。
我的根目录中有以下结构:
types
|--custom
|--index.d.ts
|--task.d.ts
在tsconfig.json中:"typeRoots": "types"
index.d.ts:
import { Task } from ‘./task’;
type Project = {
title: string;
tasks?: Task[];
};
task.d.ts:
export type Task = {
title: string;
};
我做错了什么?