requizm
requizm
DDeno
Created by requizm on 1/23/2025 in #help
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/**/*",
]
// ...
}
{
// ...
"exclude": [
"**/public/**/*",
"../../../../public/",
"../../../../public/**/*",
]
// ...
}
However, it didn't work. It still tries to check and compile that folder.
2 replies