当前位置:  开发笔记 > 编程语言 > 正文

tsconfig.json中的Typeroots选项无法识别自定义类型

如何解决《tsconfig.json中的Typeroots选项无法识别自定义类型》经验,为你挑选了0个好方法。

我有一个打字脚本项目设置为./node_modules/types,这是我的tsconfig:

{
    "compilerOptions": {
        "baseUrl": ".",
        "noImplicitReturns": true,
        "declaration": false,
        "noImplicitAny": true,
        "strictNullChecks": true,
        "emitDecoratorMetadata": true,
        "experimentalDecorators": true,
        "suppressImplicitAnyIndexErrors": false,
        "lib": [
            "es6",
            "dom"
        ],
        "mapRoot": "./",
        "module": "commonjs",
        "moduleResolution": "node",
        "sourceMap": true,
        "target": "es5",
        "typeRoots": [
            "./node_modules/@types",
            "./types"
        ]
    }
}

但是,如果我将其中一个文件夹从./node_modules/@types移动到./types,相应的类型不会被打字稿选中,那么这个问题的原因是什么?

先感谢您!

推荐阅读
手机用户2402851335
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有