aboutsummaryrefslogtreecommitdiffstats
path: root/config/tsconfig.base.json
blob: 255f334e28bf063e796ccdf8e6e825413a223bda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "compilerOptions": {
    "module": "esnext",
    "target": "esnext",
    "moduleResolution": "node",
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "noImplicitOverride": true,
    "noImplicitReturns": true,
    "exactOptionalPropertyTypes": true,
    "isolatedModules": true,
    "skipLibCheck": true,
    "checkJs": true,
    "lib": [
      "esnext"
    ]
  }
}