我想根据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
}
}
]
}