DenoDDeno
Powered by
requizmR
Denoβ€’14mo agoβ€’
1 reply
requizm

Disable type checking and compilation for specific relative path

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


However, it didn't work. It still tries to check and compile that folder.
Deno banner
DenoJoin
Chat about Deno, a modern runtime for JavaScript and TypeScript.
20,944Members
Resources
Recent Announcements

Similar Threads

Was this page helpful?

Similar Threads

Can I disable type checking for specific files or folders?
MoomooMMoomoo / help
4y ago
Relative path in WebSocket
1771771771177177177 / help
3y ago
Relative path in `npm:` specifier
abiAabi / help
3y ago