summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-cli/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-cli/tsconfig.json')
-rw-r--r--packages/taler-wallet-cli/tsconfig.json30
1 files changed, 30 insertions, 0 deletions
diff --git a/packages/taler-wallet-cli/tsconfig.json b/packages/taler-wallet-cli/tsconfig.json
new file mode 100644
index 000000000..34767d1e0
--- /dev/null
+++ b/packages/taler-wallet-cli/tsconfig.json
@@ -0,0 +1,30 @@
+{
+ "compileOnSave": true,
+ "compilerOptions": {
+ "composite": true,
+ "target": "ES6",
+ "module": "ESNext",
+ "moduleResolution": "node",
+ "sourceMap": true,
+ "lib": ["es6"],
+ "noImplicitReturns": true,
+ "noFallthroughCasesInSwitch": true,
+ "strict": true,
+ "strictPropertyInitialization": false,
+ "outDir": "lib",
+ "noImplicitAny": true,
+ "noImplicitThis": true,
+ "incremental": true,
+ "esModuleInterop": true,
+ "importHelpers": true,
+ "rootDir": "src",
+ "baseUrl": "./src",
+ "types": ["node"]
+ },
+ "include": ["src/**/*"],
+ "references": [
+ {
+ "path": "../taler-wallet-core/"
+ }
+ ]
+}