-
Notifications
You must be signed in to change notification settings - Fork 15
/
tsconfig.base.json
42 lines (42 loc) · 1.76 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"noPropertyAccessFromIndexSignature": false,
"noImplicitReturns": false,
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@daohaus/abis": ["libs/abis/src/index.ts"],
"@daohaus/connect": ["libs/connect/src/index.ts"],
"@daohaus/connect-context": ["libs/connect-context/src/index.ts"],
"@daohaus/contract-utils": ["libs/contract-utils/src/index.ts"],
"@daohaus/data-fetch-utils": ["libs/data-fetch-utils/src/index.ts"],
"@daohaus/form-builder": ["libs/form-builder/src/index.ts"],
"@daohaus/form-builder-base": ["libs/form-builder-base/src/index.ts"],
"@daohaus/keychain-utils": ["libs/keychain-utils/src/index.ts"],
"@daohaus/moloch-v3-data": ["libs/moloch-v3-data/src/index.ts"],
"@daohaus/moloch-v3-fields": ["libs/moloch-v3-fields/src/index.ts"],
"@daohaus/moloch-v3-hooks": ["libs/moloch-v3-hooks/src/index.ts"],
"@daohaus/moloch-v3-legos": ["libs/moloch-v3-legos/src/index.ts"],
"@daohaus/moloch-v3-macro-ui": ["libs/moloch-v3-macro-ui/src/index.ts"],
"@daohaus/profile-data": ["libs/profile-data/src/index.ts"],
"@daohaus/tx-builder": ["libs/tx-builder/src/index.ts"],
"@daohaus/ui": ["libs/ui/src/index.ts"],
"@daohaus/utils": ["libs/utils/src/index.ts"],
"@daohaus/wizard-form-builder": ["libs/wizard-form-builder/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}