forked from intuition-box/BuildProof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
32 lines (32 loc) · 963 Bytes
/
tsconfig.base.json
File metadata and controls
32 lines (32 loc) · 963 Bytes
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
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "Node",
"outDir": "./dist",
"skipLibCheck": true,
"target": "ESNext",
"strict": true,
"paths": {
"@/*": ["src/*"],
"@0xintuition/1ui": ["packages/1ui/src/index.ts"],
"@0xintuition/buildproof_ui": ["packages/buildproof_ui/src/index.ts"],
"@0xintuition/api": ["packages/api/src/index.ts"],
"@0xintuition/automation-tools": ["tools/src/index.ts"],
"@0xintuition/graphql": ["packages/graphql/src/index.ts"],
"@0xintuition/portal": ["apps/portal/src/index.ts"],
"@0xintuition/protocol": ["packages/protocol/src/index.ts"],
"@0xintuition/sdk": ["packages/sdk/src/index.ts"]
}
},
"exclude": [
"node_modules",
"dist",
"**/*.spec.ts"
]
}