aboutsummaryrefslogtreecommitdiffstats
path: root/config/tsconfig.base.json
blob: ff7594e82bf4c505c8868adc1c343b1a054ddb72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "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"]
  }
}