123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- {
- // See https://go.microsoft.com/fwlink/?LinkId=733558
- // for the documentation about the tasks.json format
- "version": "2.0.0",
- "tasks": [
- {
- "label": "MakeHTML",
- "type": "shell",
- "command": "./sugarcube_compile.bat",
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": false,
- "panel": "dedicated",
- "showReuseMessage": false,
- "clear": true
- },
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": [],
- "dependsOn": [
- "esbuild"
- ]
- },
- {
- "label": "MakeReadme",
- "type": "shell",
- "command": "./readme/readme_compile.bat",
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": false,
- "clear": true
- },
- "group": {
- "kind": "build"
- },
- "problemMatcher": []
- },
- {
- "label": "BuildModFiles",
- "type": "shell",
- "command": "./mods/util/BuildModFiles.bat",
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": false,
- "clear": true
- },
- "group": {
- "kind": "build"
- },
- "problemMatcher": [],
- "dependsOn": [
- "MakeHTML"
- ]
- },
- {
- "type": "typescript",
- "tsconfig": "./sugarcube/tsconfig.json",
- "problemMatcher": [
- "$tsc"
- ],
- "presentation": {
- "panel": "dedicated",
- },
- "group": {
- "kind": "build"
- },
- "label": "TSC"
- },
- {
- "label": "esbuild",
- "type": "shell",
- "command": "esbuild sugarcube/temp/typescript.js --minify --outfile=sugarcube/src/typescript-min.js",
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": false,
- "panel": "dedicated",
- "showReuseMessage": false,
- "clear": true
- },
- "group": {
- "kind": "build"
- },
- "problemMatcher": [],
- "dependsOn": [
- "TSC"
- ]
- },
- ]
- }
|