summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-android/tsconfig.json
blob: 62be133ef039f62a0ad3b4e3cc6787ffcda90d94 (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
{
  "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/**/*"]
}