summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/tsconfig.json
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-03-27 14:35:58 +0100
committerFlorian Dold <florian@dold.me>2021-03-27 14:36:08 +0100
commitd44740b787c974c5388811a2989557d93923c49a (patch)
tree39db4f910a3714f2337b1dca4a7b4f1a3c67f053 /packages/taler-wallet-webextension/tsconfig.json
parent14d48836397f5f52ed686fbffeaaf50a3f5a4577 (diff)
downloadwallet-core-d44740b787c974c5388811a2989557d93923c49a.tar.gz
wallet-core-d44740b787c974c5388811a2989557d93923c49a.tar.bz2
wallet-core-d44740b787c974c5388811a2989557d93923c49a.zip
fix build issues
Diffstat (limited to 'packages/taler-wallet-webextension/tsconfig.json')
-rw-r--r--packages/taler-wallet-webextension/tsconfig.json46
1 files changed, 27 insertions, 19 deletions
diff --git a/packages/taler-wallet-webextension/tsconfig.json b/packages/taler-wallet-webextension/tsconfig.json
index 4b1bb19be..417a73b1b 100644
--- a/packages/taler-wallet-webextension/tsconfig.json
+++ b/packages/taler-wallet-webextension/tsconfig.json
@@ -1,22 +1,30 @@
{
- "compilerOptions": {
- "composite": true,
- "lib": ["es6", "DOM"],
- "jsx": "react",
- "moduleResolution": "Node",
- "reactNamespace": "React",
- "module": "ESNext",
- "target": "ES6",
- "noImplicitAny": true,
- "outDir": "lib",
- "noEmitOnError": true,
- "strict": true,
- "incremental": true,
- "sourceMap": true,
- "esModuleInterop": true,
- "importHelpers": true,
- "rootDir": "./src",
- "typeRoots": ["./node_modules/@types"]
+ "compilerOptions": {
+ "composite": true,
+ "lib": ["es6", "DOM"],
+ "jsx": "react",
+ "moduleResolution": "Node",
+ "reactNamespace": "React",
+ "module": "ESNext",
+ "target": "ES6",
+ "noImplicitAny": true,
+ "outDir": "lib",
+ "noEmitOnError": true,
+ "strict": true,
+ "incremental": true,
+ "sourceMap": true,
+ "esModuleInterop": true,
+ "importHelpers": true,
+ "rootDir": "./src",
+ "typeRoots": ["./node_modules/@types"]
+ },
+ "references": [
+ {
+ "path": "../taler-wallet-core/"
},
- "include": ["src/**/*"]
+ {
+ "path": "../taler-util/"
+ }
+ ],
+ "include": ["src/**/*"]
}