tree test
[arvados-workbench2.git] / tsconfig.json
1 {
2   "compilerOptions": {
3     "baseUrl": ".",
4     "outDir": "build/dist",
5     "module": "esnext",
6     "target": "es5",
7     "lib": ["es6", "dom"],
8     "sourceMap": true,
9     "allowJs": true,
10     "jsx": "react",
11     "moduleResolution": "node",
12     "rootDir": "src",
13     "forceConsistentCasingInFileNames": true,
14     "noImplicitReturns": true,
15     "noImplicitThis": true,
16     "noImplicitAny": true,
17     "strictNullChecks": true,
18     "suppressImplicitAnyIndexErrors": true,
19     "noUnusedLocals": false,
20     "experimentalDecorators": true,
21     "emitDecoratorMetadata": true
22     //  waits for moduleNameMapper being able to override
23     //    "paths": {
24     //      "~/*": ["src/*"]
25     //    }
26   },
27   "exclude": [
28     "node_modules",
29     "build",
30     "scripts",
31     "acceptance-tests",
32     "webpack",
33     "jest",
34     "src/setupTests.ts",
35     "**/*.test.tsx"
36   ]
37 }