aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.settings.json
blob: 8fb9ab041b1bac70995b95fe13ab9761330aba8f (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,
    "noImplicitAny": false,
    "allowSyntheticDefaultImports": true,
    "experimentalDecorators": true,
    "composite": true,
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "importHelpers": true,
    "removeComments": true,
    "typeRoots": ["packages/typings/types", "node_modules/@types"],
    "paths": {
      "@types/*": ["packages/typings/types/*.d.ts"],
      "*": ["packages/typings/types/*.d.ts"]
    }
  }
}