-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
45 lines (45 loc) · 1.91 KB
/
tsconfig.base.json
File metadata and controls
45 lines (45 loc) · 1.91 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
{
"compilerOptions": {
"composite": true,
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"importHelpers": true,
"isolatedModules": true,
"lib": ["ES2022"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true,
"strict": true,
"target": "ES2022",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@23blocks/contracts": ["packages/contracts/src/index.ts"],
"@23blocks/jsonapi-codec": ["packages/jsonapi-codec/src/index.ts"],
"@23blocks/transport-http": ["packages/transport-http/src/index.ts"],
"@23blocks/block-authentication": ["packages/block-authentication/src/index.ts"],
"@23blocks/block-content": ["packages/block-content/src/index.ts"],
"@23blocks/block-crm": ["packages/block-crm/src/index.ts"],
"@23blocks/block-forms": ["packages/block-forms/src/index.ts"],
"@23blocks/block-products": ["packages/block-products/src/index.ts"],
"@23blocks/block-search": ["packages/block-search/src/index.ts"],
"@23blocks/block-files": ["packages/block-files/src/index.ts"],
"@23blocks/block-rewards": ["packages/block-rewards/src/index.ts"],
"@23blocks/block-assets": ["packages/block-assets/src/index.ts"],
"@23blocks/block-wallet": ["packages/block-wallet/src/index.ts"],
"@23blocks/block-jarvis": ["packages/block-jarvis/src/index.ts"],
"@23blocks/block-rag": ["packages/block-rag/src/index.ts"],
"@23blocks/angular": ["packages/angular/src/index.ts"],
"@23blocks/react": ["packages/react/src/index.ts"],
"@23blocks/sdk": ["packages/sdk/src/index.ts"],
"@23blocks/testing": ["packages/testing/src/index.ts"]
}
}
}