aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.settings.json
blob: ccd0927ab3da73f5461599c4d7352abaa0b6990a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "compilerOptions": {
    "baseUrl": ".",
    "target": "esnext",
    "module": "commonjs",
    "lib": [
      "es2015",
      "es2017",
      "dom"
    ],
    "jsx": "react",
    "sourceMap": true,
    "strict": true,
    "allowSyntheticDefaultImports": true,
    "experimentalDecorators": true,
    "composite": true,
    "esModuleInterop": true,
    "typeRoots": ["packages/typings/types", "node_modules/@types"],
    "paths": {
      "@types/*": ["packages/typings/types/*.d.ts"],
      "*": ["packages/typings/types/*.d.ts"]
    }
  }
}