summaryrefslogtreecommitdiffhomepage
path: root/client/web/tsconfig.json
blob: 51c3de9d8c5506d1a512ce827d5e134513af1023 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "compilerOptions": {
    "baseUrl": ".",
    "target": "ES2017",
    "module": "ES2020",
    "strict": true,
    "sourceMap": true,
    "isolatedModules": true,
    "moduleResolution": "node",
    "forceConsistentCasingInFileNames": true,
    "allowSyntheticDefaultImports": true,
    "jsx": "react",
  },
  "include": ["src/**/*"],
  "exclude": ["node_modules"]
}