使用tsconfig.json或task.json将参数传递到tsc

时间:2019-10-21 12:21:07

标签: typescript visual-studio-code tsc

我想根据this question中的说明将-b --clean参数传递给tsc。但是,我找不到编辑tsconfig.json文件以传递参数的方法。我该怎么办?

这里是tsconfig.json文件供参考。

{
    "compilerOptions": {
        "target": "es6",
        "module": "commonjs",
        "sourceMap": true,
        "outDir": "build",
        "resolveJsonModule": true
    },
    "include": [
        "src/main.ts"
    ]
}

我认为可以通过编辑tasks.json文件来实现,但是我不知道它是如何工作的。这是我的tasks.json文件:

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558 
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "type": "typescript",
            "tsconfig": "tsconfig.json",
            "problemMatcher": [
                "$tsc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

0 个答案:

没有答案