Vscode_deno: deno.ignore setting

Created on 1 Sep 2020  路  1Comment  路  Source: denoland/vscode_deno

Is your feature request related to a problem? Please describe.

Often I need to embed bits of a Nodejs project in my Deno project.

When deno.enable is true the Nodejs typescript files display all sorts of errors due to the differences between conventional typescript and Deno typescript.

Describe the solution you'd like

The best solution I can think of right now would be to add a deno.ignore setting to this extension.

```json
// .vscode/settings.json
{
"deno.enable": true,
"deno.ignore": [ "src/embeded-node-project/*/" ]
}

Most helpful comment

Another option would be to allow enabling Deno only for a specific set of files:

{
    "deno.enable": [
        "src/deno/*"
    ]
}

>All comments

Another option would be to allow enabling Deno only for a specific set of files:

{
    "deno.enable": [
        "src/deno/*"
    ]
}
Was this page helpful?
0 / 5 - 0 ratings

Related issues

saefullohmaslul picture saefullohmaslul  路  7Comments

chenguzhen87 picture chenguzhen87  路  5Comments

Ciantic picture Ciantic  路  10Comments

shadowtime2000 picture shadowtime2000  路  3Comments

promethyttrium picture promethyttrium  路  10Comments