summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-cli/tsconfig.json
blob: 4b46790c8b974e2b68498847fe507c11dd180692 (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
32
33
{
  "compileOnSave": true,
  "compilerOptions": {
    "composite": true,
    "target": "ES2020",
    "module": "Node16",
    "moduleResolution": "Node16",
    "sourceMap": true,
    "lib": ["ES2020"],
    "noImplicitReturns": true,
    "noFallthroughCasesInSwitch": true,
    "strict": true,
    "strictPropertyInitialization": false,
    "outDir": "lib",
    "noImplicitAny": true,
    "noImplicitThis": true,
    "incremental": true,
    "esModuleInterop": true,
    "importHelpers": true,
    "rootDir": "src",
    "baseUrl": "./src",
    "typeRoots": ["./node_modules/@types"]
  },
  "include": ["src/**/*", "../taler-util/src/twrpc.ts"],
  "references": [
    {
      "path": "../taler-wallet-core/"
    },
    {
      "path": "../taler-util/"
    }
  ]
}