mirror of
https://github.com/denoland/deno.git
synced 2025-01-10 16:11:13 -05:00
89c92b84fa
Instead of hard erroring, we now surface module not found errors as TypeScript diagnostics (we have yet to show the source code of the error, but something we can improve over time).
24 lines
590 B
Text
24 lines
590 B
Text
{
|
|
"tests": {
|
|
"check": {
|
|
"args": "check --allow-import main.ts",
|
|
"output": "main.out",
|
|
"exitCode": 1
|
|
},
|
|
"run": {
|
|
"args": "run --check --allow-import main.ts",
|
|
"output": "main.out",
|
|
"exitCode": 1
|
|
},
|
|
"missing_local_root": {
|
|
"args": "check --allow-import non_existent.ts",
|
|
"output": "missing_local_root.out",
|
|
"exitCode": 1
|
|
},
|
|
"missing_remote_root": {
|
|
"args": "check --allow-import http://localhost:4545/missing_non_existent.ts",
|
|
"output": "missing_remote_root.out",
|
|
"exitCode": 1
|
|
}
|
|
}
|
|
}
|