18128: Improves process panel.
[arvados-workbench2.git] / tsconfig.json
1 {
2   "compilerOptions": {
3     "outDir": "build/dist",
4     "module": "esnext",
5     "target": "es5",
6     "lib": [
7       "es6",
8       "dom"
9     ],
10     "sourceMap": true,
11     "allowJs": true,
12     "jsx": "preserve",
13     "moduleResolution": "node",
14     "rootDir": "src",
15     "baseUrl": "src",
16     "forceConsistentCasingInFileNames": true,
17     "noImplicitReturns": true,
18     "noImplicitThis": true,
19     "noImplicitAny": false,
20     "strictNullChecks": true,
21     "suppressImplicitAnyIndexErrors": true,
22     "noUnusedLocals": false,
23     "experimentalDecorators": true,
24     "emitDecoratorMetadata": true,
25     "skipLibCheck": true,
26     "esModuleInterop": true,
27     "allowSyntheticDefaultImports": true,
28     "strict": false,
29     "resolveJsonModule": true,
30     "isolatedModules": true,
31     "incremental": true,
32     "noEmit": true,
33     "alwaysStrict": false,
34     "strictFunctionTypes": false,
35     "strictPropertyInitialization": false,
36   },
37   "exclude": [
38     "node_modules",
39     "build",
40     "scripts",
41     "acceptance-tests",
42     "webpack",
43     "jest",
44     "cypress",
45     "src/setupTests.ts",
46     "**/*.test.tsx"
47   ],
48   "include": [
49     "src"
50   ]
51 }