aboutsummaryrefslogtreecommitdiffstats
path: root/qt-lib/tsconfig.json
blob: 89945fda5b3e05fa0544872f50986cac6da8dd42 (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
{
  "compilerOptions": {
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "module": "commonjs",
    "target": "ES2020",
    "types": ["node"],
    "outDir": "out",
    "lib": ["ES2020", "DOM"],
    "sourceMap": true,
    "declaration": true,
    "rootDir": "src",
    "strict": true /* enable all strict type-checking options */,
    "noImplicitOverride": true,
    "noUncheckedIndexedAccess": true,
    "allowUnusedLabels": false,
    "incremental": true,
    "allowUnreachableCode": false,
    "noImplicitReturns": true,
    "exactOptionalPropertyTypes": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "baseUrl": "./",
    "paths": {
      "@/*": ["src/*"]
    }
  },
  "include": ["src/**/*"]
}