forked from microsoft/responsible-ai-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
59 lines (59 loc) · 2.09 KB
/
tsconfig.base.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"compileOnSave": false,
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"baseUrl": ".",
"declaration": false,
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"jsx": "react",
"lib": ["es2017", "dom"],
"module": "esnext",
"moduleResolution": "node",
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"rootDir": ".",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"target": "ES5",
"typeRoots": ["node_modules/@types"],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noEmit": true,
"strict": true,
"suppressImplicitAnyIndexErrors": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"paths": {
"@responsible-ai/causality": ["libs/causality/src/index.ts"],
"@responsible-ai/core-ui": ["libs/core-ui/src/index.ts"],
"@responsible-ai/counterfactuals": ["libs/counterfactuals/src/index.ts"],
"@responsible-ai/dataset-explorer": [
"libs/dataset-explorer/src/index.ts"
],
"@responsible-ai/e2e": ["libs/e2e/src/index.ts"],
"@responsible-ai/error-analysis": ["libs/error-analysis/src/index.ts"],
"@responsible-ai/fairness": ["libs/fairness/src/index.ts"],
"@responsible-ai/forecasting": ["libs/forecasting/src/index.ts"],
"@responsible-ai/interpret": ["libs/interpret/src/index.ts"],
"@responsible-ai/interpret-text": ["libs/interpret-text/src/index.ts"],
"@responsible-ai/interpret-vision": [
"libs/interpret-vision/src/index.ts"
],
"@responsible-ai/localization": ["libs/localization/src/index.ts"],
"@responsible-ai/mlchartlib": ["libs/mlchartlib/src/index.ts"],
"@responsible-ai/model-assessment": ["libs/model-assessment/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}