requizmR
Denoβ€’12mo agoβ€’
1 reply
requizm

Disable type checking and compilation for specific relative path

I have a relative path like ../../../../public/. Deno should not check that folder. But I couldn't find
deno.json
field for that. I tried this:
{
    // ...
    "exclude": [
        "**/public/**/*",
        "../../../../public/",
        "../../../../public/**/*",
    ]
    // ...
}


However, it didn't work. It still tries to check and compile that folder.
Was this page helpful?