add typescript build task
This commit is contained in:
parent
57000c2214
commit
4c296c9c5f
7
.vscode/tasks.json
vendored
7
.vscode/tasks.json
vendored
@ -5,11 +5,14 @@
|
|||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"type": "typescript",
|
"type": "typescript",
|
||||||
"tsconfig": "tsconfig.json",
|
"tsconfig": "tsconfig.build.json",
|
||||||
"problemMatcher": [
|
"problemMatcher": [
|
||||||
"$tsc"
|
"$tsc"
|
||||||
],
|
],
|
||||||
"group": "build"
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
21
tsconfig.build.json
Normal file
21
tsconfig.build.json
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"compileOnSave": true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"composite": true,
|
||||||
|
},
|
||||||
|
"references": [
|
||||||
|
{
|
||||||
|
"path": "packages/idb-bridge/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "packages/taler-wallet-core/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "packages/taler-integrationtests"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "packages/taler-wallet-cli"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"files": []
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user