-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathtsconfig.json
More file actions
99 lines (99 loc) · 2.33 KB
/
Copy pathtsconfig.json
File metadata and controls
99 lines (99 loc) · 2.33 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"noEmit": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"paths": {
"*": [
"./*"
],
"@earendil-works/pi-ai": [
"./packages/ai/src/index.ts"
],
"@earendil-works/pi-ai/oauth": [
"./packages/ai/src/oauth.ts"
],
"@earendil-works/pi-ai/*": [
"./packages/ai/src/*.ts",
"./packages/ai/src/providers/*.ts"
],
"@earendil-works/pi-ai/dist/*": [
"./packages/ai/src/*"
],
"@earendil-works/pi-agent-core": [
"./packages/agent/src/index.ts"
],
"@earendil-works/pi-agent-core/*": [
"./packages/agent/src/*"
],
"@earendil-works/pi-coding-agent": [
"./packages/coding-agent/src/index.ts"
],
"@earendil-works/pi-coding-agent/hooks": [
"./packages/coding-agent/src/core/hooks/index.ts"
],
"@earendil-works/pi-coding-agent/*": [
"./packages/coding-agent/src/*"
],
"@earendil-works/pi-orchestrator": [
"./packages/orchestrator/src/index.ts"
],
"@earendil-works/pi-orchestrator/*": [
"./packages/orchestrator/src/*"
],
"@code-yeongyu/senpi-orchestrator": [
"./packages/orchestrator/src/index.ts"
],
"@code-yeongyu/senpi-orchestrator/*": [
"./packages/orchestrator/src/*"
],
"typebox": [
"./node_modules/typebox"
],
"@earendil-works/pi-tui": [
"./packages/tui/src/index.ts"
],
"@earendil-works/pi-tui/*": [
"./packages/tui/src/*"
],
"@earendil-works/pi-pty": [
"./packages/pty/src/index.ts"
],
"@earendil-works/pi-pty/*": [
"./packages/pty/src/*"
],
"@earendil-works/pi-web-ui": [
"./packages/web-ui/src/index.ts"
],
"@earendil-works/pi-web-ui/*": [
"./packages/web-ui/src/*"
],
"@earendil-works/pi-agent-old": [
"./packages/agent-old/src/index.ts"
],
"@earendil-works/pi-agent-old/*": [
"./packages/agent-old/src/*"
],
"@code-yeongyu/senpi": [
"./packages/coding-agent/src/index.ts"
],
"@code-yeongyu/senpi/hooks": [
"./packages/coding-agent/src/core/hooks/index.ts"
],
"@code-yeongyu/senpi/*": [
"./packages/coding-agent/src/*"
]
}
},
"include": [
"packages/*/src/**/*",
"packages/*/test/**/*",
"packages/coding-agent/examples/**/*"
],
"exclude": [
"packages/web-ui/**/*",
"**/dist/**",
"packages/coding-agent/examples/extensions/gondolin/**"
]
}