1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/specs/jsr/no_unused_params/deno.json
David Sherret b8af46e007
fix(check): ignore certain diagnostics in remote modules and when publishing (#23119)
Unused locals and parameters don't make sense to surface in remote
modules. Additionally, fast check can cause these kind of diagnostics
when publishing, so they should be ignored.

Closes #22959
2024-03-31 16:39:40 -04:00

9 lines
155 B
JSON

{
"name": "@scope/package",
"version": "0.0.0",
"exports": "./main.ts",
"lock": false,
"compilerOptions": {
"noUnusedParameters": true
}
}