fantasy-console/deno.json

12 lines
398 B
JSON
Raw Normal View History

2023-04-28 20:01:48 -07:00
{
"fmt": {
"useTabs": true
2023-05-01 18:42:55 -07:00
},
"tasks": {
"run": "deno run -A --unstable index.ts",
2023-05-06 18:00:22 -07:00
"build": "deno compile --output build/faux -A --unstable index.ts",
"build_linux": "deno compile --output build/faux_linux --target x86_64-unknown-linux-gnu -A --unstable index.ts",
"build_windows": "deno compile --output build/faux_windows --target x86_64-pc-windows-msvc -A --unstable index.ts"
2023-04-28 20:01:48 -07:00
}
}