-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
66 lines (66 loc) · 2.6 KB
/
tsconfig.base.json
File metadata and controls
66 lines (66 loc) · 2.6 KB
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
60
61
62
63
64
65
66
{
"__comment": "The base tsconfig for all packages. Must be here for NX to keep in sync as packages change",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"incremental": true,
"inlineSources": false,
"isolatedModules": true,
"lib": ["es2022", "dom"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"outDir": "./dist/out-tsc",
"preserveConstEnums": true,
"preserveSymlinks": false,
"removeComments": false,
"rootDir": ".",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"target": "esnext",
"types": ["node"],
"useUnknownInCatchVariables": true,
"paths": {
"@universe/api/*": ["./packages/api/*"],
"@universe/cli/*": ["./apps/cli/*"],
"@universe/config/*": ["./packages/config/*"],
"@universe/gating/*": ["./packages/gating/*"],
"@universe/notifications/*": ["./packages/notifications/*"],
"@universe/sessions/*": ["./packages/sessions/*"],
"@universe/hashcash-native": ["./packages/hashcash-native/src/index.ts"],
"@universe/hashcash-native/*": ["./packages/hashcash-native/*"],
"ui/*": ["./packages/ui/*"],
"uniswap/*": ["./packages/uniswap/*"],
"utilities/*": ["./packages/utilities/*"],
"wallet/*": ["./packages/wallet/*"],
"@universe/transactional/*": ["./packages/transactional/*"],
"@universe/mycelium/*": ["./packages/mycelium/*"],
"@universe/websocket/*": ["./packages/websocket/*"],
"@universe/prices/*": ["./packages/prices/*"],
"@uniswap/client-privy-embedded-wallet/dist/uniswap/privy-embedded-wallet/v1/service_pb": [
"./node_modules/@uniswap/client-privy-embedded-wallet/dist/uniswap/privy-embedded-wallet/v1/service_pb",
"./packages/api/stubs/privy-service-pb"
],
"@uniswap/client-privy-embedded-wallet/dist/uniswap/privy-embedded-wallet/v1/service_connect": [
"./node_modules/@uniswap/client-privy-embedded-wallet/dist/uniswap/privy-embedded-wallet/v1/service_connect",
"./packages/api/stubs/privy-service-connect"
]
}
}
}