VSCode(TSC和Python)任务

时间:2016-11-09 00:08:11

标签: typescript visual-studio-code

我正在尝试设置两个不同的任务(一个基本上将源复制到目标的python脚本),然后是在Visual Studio Code的Configure Task Runner中将TSC文件连接到单个JS文件的实际构建任务:

我的代码如下所示:

 {
        // See https://go.microsoft.com/fwlink/?LinkId=733558
        // for the documentation about the tasks.json format
        "version": "0.1.0",
        "command": "bash",
        "isShellCommand": true,
        "showOutput": "always",
        "args": [
            "-c"
        ],
        "tasks": [
            {
                "taskName": "python",
                "isBuildCommand": false,
                "args": ["/usr/bin/python includeAsset.py"]
            },
            {
                "taskName": "build",
                "isBuildCommand": true,
                "args": ["-p", ".", "--outFile", "bin/js/main.js"],
                "problemMatcher": "$tsc"
            }
        ]
    }

我无法弄清问题是什么。这是我第一次尝试VSCode,对于我做错了什么,我完全无能为力。任何帮助都非常感谢!

0 个答案:

没有答案