summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/tsconfig.json
blob: 75e2ce0166808752b7e09832f7c34fd81272dad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  "compilerOptions": {
    "composite": true,
    "lib": ["es6", "DOM"],
    "jsx": "react",
    "jsxFactory": "h",
    "jsxFragmentFactory": "Fragment",
    "moduleResolution": "Node",
    "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/"
    },
    {
      "path": "../taler-util/"
    }
  ],
  "include": ["src/**/*"]
}