{
	"version": "2.0.0",
	"tasks": [
		{
			"type": "npm",
			"script": "build",
			"presentation": {
				"echo": true,
				"reveal": "silent",
				"focus": false,
				"panel": "shared",
				"showReuseMessage": true,
				"clear": false
			},
			"group": {
				"kind": "build",
				"isDefault": true
			},
			"label": "npm: build",
			"detail": "tsc && cd ./cli && tsc"
		},
		{
			"label": "compile ftHTML",
			"type": "shell",
			"command": "node '${workspaceFolder}\\cli\\bin\\fthtml' convert .dev/playground/index.fthtml -config='${workspaceFolder}\\.dev\\fthtmlconfig.dev.json' --pretty=true ${input:isdebug}",
			"presentation": {
				"echo": true,
				"reveal": "silent",
				"focus": false,
				"panel": "shared",
				"showReuseMessage": true,
				"clear": false
			},
			"problemMatcher": []
		}
	],
	"inputs": [
		{
			"id": "isdebug",
			"type": "pickString",
			"default": "debug",
			"description": "run compile with debug",
			"options": [
				{
					"label": "debug",
					"value": "--debug"
				},
				{
					"label": "debug test",
					"value": "--debug -t"
				},
				{
					"label": "none",
					"value": ""
				}
			]
		}
	]

}