commit 4c296c9c5f5bf10f4c3d61d84a354749b302a18a
parent 57000c22141afde7eb7b13ccbd16f06d6b6eb5cd
Author: Florian Dold <florian.dold@gmail.com>
Date: Thu, 20 Aug 2020 13:54:52 +0530
add typescript build task
Diffstat:
2 files changed, 26 insertions(+), 2 deletions(-)
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
@@ -5,11 +5,14 @@
"tasks": [
{
"type": "typescript",
- "tsconfig": "tsconfig.json",
+ "tsconfig": "tsconfig.build.json",
"problemMatcher": [
"$tsc"
],
- "group": "build"
+ "group": {
+ "kind": "build",
+ "isDefault": true,
+ },
}
]
}
\ No newline at end of file
diff --git a/tsconfig.build.json b/tsconfig.build.json
@@ -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": []
+}