mirror of
https://github.com/denoland/deno.git
synced 2024-12-19 05:45:09 -05:00
25 lines
531 B
Text
25 lines
531 B
Text
|
{
|
||
|
"tempDir": true,
|
||
|
// use this so the vfs output is all in the same folder
|
||
|
"canonicalizedTempDir": true,
|
||
|
"steps": [{
|
||
|
"if": "unix",
|
||
|
"args": "compile -A --output main main.ts",
|
||
|
"output": "compile.out"
|
||
|
}, {
|
||
|
"if": "unix",
|
||
|
"commandName": "./main",
|
||
|
"args": [],
|
||
|
"output": "main.out"
|
||
|
}, {
|
||
|
"if": "windows",
|
||
|
"args": "compile -A --output main.exe main.ts",
|
||
|
"output": "compile.out"
|
||
|
}, {
|
||
|
"if": "windows",
|
||
|
"commandName": "./main.exe",
|
||
|
"args": [],
|
||
|
"output": "main.out"
|
||
|
}]
|
||
|
}
|