-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
57 lines (57 loc) · 2.2 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"moduleResolution": "node",
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"allowJs": true,
"sourceMap": true,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"strict": true,
"alwaysStrict": true,
"strictNullChecks": true,
"noUnusedLocals": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"useUnknownInCatchVariables": false,
"resolveJsonModule": true,
"isolatedModules": true,
"downlevelIteration": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"@cowprotocol/abis": ["libs/abis/src/index.ts"],
"@cowprotocol/analytics": ["libs/analytics/src/index.ts"],
"@cowprotocol/assets/*": ["libs/assets/src/*"],
"@cowprotocol/balances-and-allowances": ["libs/balances-and-allowances/src/index.ts"],
"@cowprotocol/common-const": ["libs/common-const/src/index.ts"],
"@cowprotocol/common-hooks": ["libs/common-hooks/src/index.ts"],
"@cowprotocol/common-utils": ["libs/common-utils/src/index.ts"],
"@cowprotocol/events": ["libs/events/src/index.ts"],
"@cowprotocol/types": ["libs/types/src/index.ts"],
"@cowprotocol/core": ["libs/core/src/index.ts"],
"@cowprotocol/ens": ["libs/ens/src/index.ts"],
"@cowprotocol/multicall": ["libs/multicall/src/index.ts"],
"@cowprotocol/permit-utils": ["libs/permit-utils/src/index.ts"],
"@cowprotocol/snackbars": ["libs/snackbars/src/index.ts"],
"@cowprotocol/tokens": ["libs/tokens/src/index.ts"],
"@cowprotocol/ui": ["libs/ui/src/index.ts"],
"@cowprotocol/ui-utils": ["libs/ui-utils/src/index.ts"],
"@cowprotocol/wallet": ["libs/wallet/src/index.ts"],
"@cowprotocol/widget-lib": ["libs/widget-lib/src/index.ts"],
"@cowprotocol/widget-react": ["libs/widget-react/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}