如何利用Intellisense将js库导入到Typescript模块/ VS Code任务

时间:2017-09-10 12:16:40

标签: javascript typescript visual-studio-code intellisense vscode-tasks

我已经阅读了有关如何将(流行的).js libs及其d.ts文件添加到Typescript模块文件的其他帖子和教程,但我陷入了错误消息的恶性循环。我对Typescript很陌生,所以如果我的设置存在根本性的错误,请告诉我。

我正在创建一个使用(以及其他)vis.js数据集或moment.js函数的.ts模块。

VS Code任务将我的.ts模块文件编译为.js。当然,我想将IntelliSense用于正在使用的js库。

vis.js的.d.ts文件来自DefinitelyTyped项目。

文件结构:

/projectdir
    /.vscode
        tasks.json
    /lib
        vis.js
        moment.js
    /src
        myModule.ts
        -> myModule.js
        -> myModule.js.map
    /types
        /vis/index.d.ts...
        /jquery/index.d.ts...
    index.html
    tsconfig.json

tsconfig.json的内容:

{
    "compilerOptions": {
        "module": "system",
        "moduleResolution": "classic",
        "allowJs": true,
        "allowSyntheticDefaultImports": true,
        "target": "es5",
        "sourceMap": true,
        "watch": true,
        "rootDir": "src",
        "lib": ["es2015", "dom", "dom.iterable"],
        "baseUrl": "types",
        "typeRoots": ["types"]
    },
    "exclude": [
        "./lib",
        "**/*.js",
        "**/*.js.map"
    ],
    "include": [
        "src/**/*.ts"
    ]
}

我的VSCode tasks.json的内容:

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "command": "tsc",
    "problemMatcher": "$tsc",
    "tasks": [{
        "type": "typescript",
        "tsconfig": "tsconfig.json",
        "group": {
            "kind": "build",
            "isDefault": true
        }
    }]
}

最后这是myModule.ts:

export module datacore {
    export var myDataSet = new vis.DataSet([]);
}

我已经为tsconfig.json中的vis和其他js库设置并引用了.d.ts文件。基本上它可以工作,但我收到了这个错误:

src/datacore.ts(2,33): error TS2686: 'vis' refers to a UMD global, but the current file is a module. Consider adding an import instead.

所以我考虑在我的模块上添加导入:

import * as vis from "../lib/vis";
//also tried: import vis = require("../lib/vis");

export module datacore {
    export var myDataSet = new vis.DataSet([]);
}

当我现在在myModule.ts文件上启动编译任务时,它显然需要很长时间,因为他显然也试图编译vis.js。 过了一段时间我收到了这个错误:

Cannot write file '/Users/username/Desktop/timecore/lib/vis.js' because it would overwrite input file.

好的,他不能写vis.js,但我还是不想要那样。为了防止他编译.js文件,我在tsconfig.json中设置" allowJs":为false。

现在编译速度要快得多,但会导致此错误:

src/datacore.ts(3,22): error TS6143: Module '../lib/vis' was resolved to '/Users/username/Desktop/timecore/lib/vis.js', but '--allowJs' is not set.

这是恶性循环关闭的地方。

我的设置有什么问题?

为了正确导入js库到我的Typescript模块,我需要做什么(所以我也可以使用IntelliSense在VS Code中进行类型检查)?

2 个答案:

答案 0 :(得分:1)

  

我的设置有什么问题?

好吧,我无法找到您的设置有什么问题,因为它看起来很奇怪。

如果我必须使用vis.js和moment.js创建一个TypeScript项目,这将是我的设置过程(使用npm):

npm install --save vis moment
npm install --save-dev @types/vis @types/moment

然后,您的代码应如下所示:

import * as vis from "vis";

export module datacore {
    export var myDataSet = new vis.DataSet([]);
}

我不会在tsconfig.json中使用系统作为模块求解器。相反,我建议您使用tsconfig.json生成初始tsc --init文件,然后根据您的需要进行调整。

最后,如果您要定位网络浏览器,您还应该查找有关网络解决方案的信息(例如webpack或RequireJS)。

答案 1 :(得分:1)

作为评论讨论的结果,在您的情况下,您应该使用import * as vis from "../types/vis/index";代替"../lib/vis"