blob: 0602a09baa6d69bef09df855740cdf0fe03c4c73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
"tests": {
"cjs_entrypoint": {
"args": "run -R index.cjs",
"output": "index.out"
},
"esm_entrypoint": {
"args": "run -R main.ts",
"output": "main.out"
},
"module_error": {
"args": "run module_error.js",
"output": "module_error.out",
"exitCode": 1
},
"exports_error": {
"args": "run exports_error.js",
"output": "exports_error.out",
"exitCode": 1
},
"require_error": {
"args": "run require_error.js",
"output": "require_error.out",
"exitCode": 1
}
}
}
|