-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
44 lines (44 loc) · 1.66 KB
/
Copy pathtsconfig.base.json
File metadata and controls
44 lines (44 loc) · 1.66 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
{
"compilerOptions": {
"target": "ES2023",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"allowImportingTsExtensions": true,
"rewriteRelativeImportExtensions": true,
"baseUrl": ".",
"paths": {
"@axl/ai": ["./packages/ai/src/index.ts"],
"@axl/ai/models": ["./packages/ai/src/models.ts"],
"@axl/daemon": ["./packages/daemon/src/index.ts"],
"@axl/daemon/client": ["./packages/daemon/src/client.ts"],
"@axl/extension-api": ["./packages/extensions/api/src/index.ts"],
"@axl/extension-mcp": ["./packages/extensions/mcp/src/index.ts"],
"@axl/extension-prompts": ["./packages/extensions/prompts/src/index.ts"],
"@axl/extension-skills": ["./packages/extensions/skills/src/index.ts"],
"@axl/kernel": ["./packages/kernel/src/index.ts"],
"@axl/protocol": ["./packages/protocol/src/index.ts"],
"@axl/runtime": ["./packages/runtime/src/index.ts"],
"@axl/sandbox": ["./packages/sandbox/src/index.ts"],
"@axl/sdk": ["./packages/sdk/src/index.ts"],
"@axl/sdk/unix": ["./packages/sdk/src/unix.ts"],
"@axl/tui": ["./packages/tui/src/index.ts"]
},
"lib": ["ES2023", "ESNext.Array"],
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"verbatimModuleSyntax": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"inlineSources": true,
"skipLibCheck": true,
"types": ["node"]
}
}