summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/tsconfig.json
blob: 7a1a0fcce4ff870e60bc74a29ffdb403a4229c28 (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
34
35
36
37
{
  "compileOnSave": true,
  "compilerOptions": {
    "composite": true,
    "declaration": true,
    "declarationMap": false,
    "target": "ES2020",
    "module": "Node16",
    "moduleResolution": "Node16",
    "resolveJsonModule": true,
    "sourceMap": true,
    "lib": ["ES2020"],
    "resolvePackageJsonImports": true,
    "types": ["node"],
    "noImplicitReturns": true,
    "noFallthroughCasesInSwitch": true,
    "strict": true,
    "strictPropertyInitialization": true,
    "outDir": "lib",
    "noImplicitAny": true,
    "noImplicitThis": true,
    "incremental": true,
    "esModuleInterop": true,
    "importHelpers": true,
    "rootDir": "./src",
    "typeRoots": ["./node_modules/@types"]
  },
  "references": [
    {
      "path": "../idb-bridge/"
    },
    {
      "path": "../taler-util/"
    }
  ],
  "include": ["src/**/*", "src/*.json"]
}