gpt4 book ai didi

typescript - 如何在没有 的情况下在 TypeScript 中导入带有 ‘Typings’ 的模块?

转载 作者:搜寻专家 更新时间:2023-10-30 20:54:33 24 4
gpt4 key购买 nike

我正在尝试在 TypeScript 中使用 ProtractorJasmine 编写测试。 TSD 现在已弃用,因此我必须使用“打字”来操作 TypeScript 定义。所以我安装了它:

npm install typings -g

然后我用它来安装 Jasmine 和 Chance 定义:

typings install jasmine --source dt --save –-global
typings install chance--source dt --save –-global

我还添加了"file"部分并排除了“node_modules”:

// tsconfig.json
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"declaration": false,
"noImplicitAny": false,
"outDir": "tmp",
"types": ["node", "jasmine", "chance"]
},
"files": [
"typings/index.d.ts"
],
"include": [
"lib",
"specs"
],
"exclude": [
"node_modules"
]
}

问题是 WebStorm 和 Visual Code studio 都无法找到所有 Jasmine 方法和“机会”模块的定义。错误是:

**“TS2304: Cannot find name 'describe'”** 
**“TS2307: Cannot find module 'chance'”**

分别。这是我的规范文件:

enter image description here

在“typings/”文件夹中,我看到了指向 TypeScript 定义的引用链接:

folders structure and typings/index.d.ts content

我错过了什么吗?为什么我的 IDE 找不到 Jasmine 和 Chance 的定义?

P.S. 转换为 Javacript 后测试有效。

P.S.S.添加后错误会消失

///<reference path="###"/>

到规范文件。但我不想使用它。

Protractor: 4.0.9;
TypeScript 2.0.3;
Typings 1.5.0;

提前致谢!

最佳答案

有一些因素阻碍了您的正常工作。首先,如果您使用的是 Typescript 2.0,那么 typings 也有点过时了。

Typescript 2.0 支持在节点模块中打包类型(通常由 npm install @types/module-name 安装。所有在明确类型上可用的声明也可作为 npm 模块使用在“@types/*”命名空间下,因此如果您希望离开 tsdtypings 不应该是您的最终目的地。

话虽这么说,TypeScript 2.0 仍然可以使用类型,所以让我指出我在您的配置文件中看到的一些问题。

类型属性

{ 
"types": ["node", "jasmine", "chance"]
}

types 属性只能与 @types/* 中新的基于 npm 包的类型一起使用。由于您尚未使用它,因此您的 tsconfig.json 中不应包含此属性。 (有关此属性和相关属性的作用的完整讨论,请参阅 TypeScript 2: custom typings for untyped npm module

文件/包含/排除属性

{
"files": [
"typings/index.d.ts"
],
"include": [
"lib",
"specs"
],
"exclude": [
"node_modules"
]
}

虽然您可以选择同时使用这两个文件和包含属性,但这不是必需的。您可以将 typings/index.d.ts 引用从 files 数组移动到 include 数组 中,然后只删除 files

此外,您遇到的最大问题是您的 include 语法错误。 include 采用glob 模式。您不能只是简单地输入文件夹名称,而是需要按照递归模式跟随它们:

{
"include": [
"typings/index.d.ts",
"lib/**/*",
"specs/**/*"
],
}

最后一件事是您不需要排除 node_modules。 Exclude 只需要排除那些与您的包含模式匹配的东西。由于 node_modules 不会与您的 include 模式匹配,因此无需排除它。

我认为如果您进行这些小的更改,事情应该会按您预期的那样工作,但是我真的会考虑一路走下去并迁移到新的基于 @types/* 的类型,因为它们更易于管理和方便,并且不需要外部工具(npm 除外),如 typings 或 tsd。

关于typescript - 如何在没有 <reference> 的情况下在 TypeScript 中导入带有 ‘Typings’ 的模块?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40333168/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com