summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-09-06 13:24:34 +0200
committerFlorian Dold <florian@dold.me>2023-09-06 13:24:34 +0200
commitb63937703ce1e269055497ee14ac90a28de2fc74 (patch)
treea2f9aa841b18f950028b34b17f88bf28c70dd5db /.vscode
parent7450bede5b5809f6a496b7e68852a454386850e5 (diff)
downloadwallet-core-b63937703ce1e269055497ee14ac90a28de2fc74.tar.gz
wallet-core-b63937703ce1e269055497ee14ac90a28de2fc74.tar.bz2
wallet-core-b63937703ce1e269055497ee14ac90a28de2fc74.zip
move bank API client to taler-util, update typescript config
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/tasks.json33
1 files changed, 16 insertions, 17 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 00c61e8a4..4c931ad04 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -1,18 +1,17 @@
{
- // 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.build.json",
- "problemMatcher": [
- "$tsc"
- ],
- "group": {
- "kind": "build",
- "isDefault": true,
- },
- }
- ]
-} \ No newline at end of file
+ // 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.build.json",
+ "problemMatcher": ["$tsc"],
+ "group": {
+ "kind": "build",
+ "isDefault": true
+ },
+ "label": "tsc: build - tsconfig.build.json"
+ }
+ ]
+}