forked from Uniswap/interface
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
54 lines (54 loc) · 1.56 KB
/
tsconfig.base.json
File metadata and controls
54 lines (54 loc) · 1.56 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
{
"__comment": "The base tsconfig for all packages. Must be here for NX to keep in sync as packages change",
"compilerOptions": {
"composite": true,
"incremental": true,
"noEmit": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"downlevelIteration": true,
"inlineSources": false,
"strict": true,
"preserveSymlinks": false,
"preserveConstEnums": true,
"removeComments": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"target": "esnext",
"module": "esnext",
"lib": [
"es2022",
"dom"
],
"baseUrl": ".",
"rootDir": ".",
"outDir": "./dist/out-tsc",
"types": [
"node"
],
"paths": {
"@universe/api/*": ["packages/api/*"],
"@universe/config/*": ["packages/config/*"],
"@universe/gating/*": ["packages/gating/*"],
"@universe/notifications/*": ["packages/notifications/*"],
"@universe/sessions/*": ["packages/sessions/*"],
"ui/*": ["packages/ui/*"],
"uniswap/*": ["packages/uniswap/*"],
"utilities/*": ["packages/utilities/*"],
"wallet/*": ["packages/wallet/*"],
"@universe/cli/*": ["apps/cli/*"]
}
}
}