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/run/sloppy_imports/__test__.jsonc
David Sherret 8cdb309ffd
fix(check): properly surface dependency errors in types file of js file (#25860)
We weren't surfacing dependency errors in types files of js files.
2024-09-25 09:04:57 -04:00

13 lines
251 B
Text

{
"tests": {
"no_sloppy": {
"args": "run --check main.ts",
"output": "no_sloppy.out",
"exitCode": 1
},
"sloppy": {
"args": "run --unstable-sloppy-imports --check main.ts",
"output": "sloppy.out"
}
}
}