aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-embedded/tsconfig.json
diff options
context:
space:
mode:
authorJonathan Buchanan <jonathan.russ.buchanan@gmail.com>2021-07-07 02:42:55 -0400
committerJonathan Buchanan <jonathan.russ.buchanan@gmail.com>2021-07-07 02:42:55 -0400
commitff09c98f3b0515dd92dc5f9bab887336b080b4f5 (patch)
tree8f9855a914ec62a239bf65b68c756ac7d9ae9539 /packages/taler-wallet-embedded/tsconfig.json
parent678a90934c7b819b1d5c864f7429242d7d74a1e6 (diff)
downloadwallet-core-ff09c98f3b0515dd92dc5f9bab887336b080b4f5.tar.xz
change taler-wallet-android to taler-wallet-embedded
Diffstat (limited to 'packages/taler-wallet-embedded/tsconfig.json')
-rw-r--r--packages/taler-wallet-embedded/tsconfig.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/packages/taler-wallet-embedded/tsconfig.json b/packages/taler-wallet-embedded/tsconfig.json
new file mode 100644
index 000000000..62be133ef
--- /dev/null
+++ b/packages/taler-wallet-embedded/tsconfig.json
@@ -0,0 +1,28 @@
+{
+ "compileOnSave": true,
+ "compilerOptions": {
+ "composite": true,
+ "declaration": true,
+ "declarationMap": 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,
+ "allowJs": true,
+ "checkJs": true,
+ "incremental": true,
+ "esModuleInterop": true,
+ "importHelpers": true,
+ "rootDir": "./src",
+ "typeRoots": ["./node_modules/@types"]
+ },
+ "include": ["src/**/*"]
+}