24 lines
		
	
	
		
			No EOL
		
	
	
		
			560 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			No EOL
		
	
	
		
			560 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|     // See https://go.microsoft.com/fwlink/?LinkId=733558
 | |
|     // for the documentation about the tasks.json format
 | |
|     "version": "2.0.0",
 | |
|     "tasks": [
 | |
|       {
 | |
|         "label": "Autodoc: Build & Watch",
 | |
|         "type": "shell",
 | |
|         "command": "autodoc -bw",
 | |
|         "problemMatcher": [],
 | |
|         "group": {
 | |
|           "kind": "build",
 | |
|           "isDefault": true
 | |
|         }
 | |
|       },
 | |
|       {
 | |
|         "label": "Autodoc: Build",
 | |
|         "type": "shell",
 | |
|         "command": "autodoc -b",
 | |
|         "problemMatcher": [],
 | |
|         "group": "build"
 | |
|       }
 | |
|     ]
 | |
| } |