@waynesutton/agent-memory 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.json +9 -0
- package/.claude/settings.local.json +7 -0
- package/AGENTS.md +113 -0
- package/CLAUDE.md +79 -0
- package/README.md +1 -0
- package/dist/cli/index.d.ts +3 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +192 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/parsers/claude-code.d.ts +3 -0
- package/dist/cli/parsers/claude-code.d.ts.map +1 -0
- package/dist/cli/parsers/claude-code.js +75 -0
- package/dist/cli/parsers/claude-code.js.map +1 -0
- package/dist/cli/parsers/codex.d.ts +3 -0
- package/dist/cli/parsers/codex.d.ts.map +1 -0
- package/dist/cli/parsers/codex.js +42 -0
- package/dist/cli/parsers/codex.js.map +1 -0
- package/dist/cli/parsers/conductor.d.ts +3 -0
- package/dist/cli/parsers/conductor.d.ts.map +1 -0
- package/dist/cli/parsers/conductor.js +43 -0
- package/dist/cli/parsers/conductor.js.map +1 -0
- package/dist/cli/parsers/cursor.d.ts +3 -0
- package/dist/cli/parsers/cursor.d.ts.map +1 -0
- package/dist/cli/parsers/cursor.js +50 -0
- package/dist/cli/parsers/cursor.js.map +1 -0
- package/dist/cli/parsers/index.d.ts +12 -0
- package/dist/cli/parsers/index.d.ts.map +1 -0
- package/dist/cli/parsers/index.js +27 -0
- package/dist/cli/parsers/index.js.map +1 -0
- package/dist/cli/parsers/opencode.d.ts +3 -0
- package/dist/cli/parsers/opencode.d.ts.map +1 -0
- package/dist/cli/parsers/opencode.js +72 -0
- package/dist/cli/parsers/opencode.js.map +1 -0
- package/dist/cli/parsers/parsers.test.d.ts +2 -0
- package/dist/cli/parsers/parsers.test.d.ts.map +1 -0
- package/dist/cli/parsers/parsers.test.js +151 -0
- package/dist/cli/parsers/parsers.test.js.map +1 -0
- package/dist/cli/parsers/pi.d.ts +3 -0
- package/dist/cli/parsers/pi.d.ts.map +1 -0
- package/dist/cli/parsers/pi.js +43 -0
- package/dist/cli/parsers/pi.js.map +1 -0
- package/dist/cli/parsers/types.d.ts +25 -0
- package/dist/cli/parsers/types.d.ts.map +1 -0
- package/dist/cli/parsers/types.js +2 -0
- package/dist/cli/parsers/types.js.map +1 -0
- package/dist/cli/parsers/vscode-copilot.d.ts +3 -0
- package/dist/cli/parsers/vscode-copilot.d.ts.map +1 -0
- package/dist/cli/parsers/vscode-copilot.js +69 -0
- package/dist/cli/parsers/vscode-copilot.js.map +1 -0
- package/dist/cli/parsers/zed.d.ts +3 -0
- package/dist/cli/parsers/zed.d.ts.map +1 -0
- package/dist/cli/parsers/zed.js +43 -0
- package/dist/cli/parsers/zed.js.map +1 -0
- package/dist/cli/sync.d.ts +21 -0
- package/dist/cli/sync.d.ts.map +1 -0
- package/dist/cli/sync.js +78 -0
- package/dist/cli/sync.js.map +1 -0
- package/dist/cli/type-extractor.d.ts +25 -0
- package/dist/cli/type-extractor.d.ts.map +1 -0
- package/dist/cli/type-extractor.js +254 -0
- package/dist/cli/type-extractor.js.map +1 -0
- package/dist/cli/type-extractor.test.d.ts +2 -0
- package/dist/cli/type-extractor.test.d.ts.map +1 -0
- package/dist/cli/type-extractor.test.js +173 -0
- package/dist/cli/type-extractor.test.js.map +1 -0
- package/dist/client/http.d.ts +44 -0
- package/dist/client/http.d.ts.map +1 -0
- package/dist/client/http.js +311 -0
- package/dist/client/http.js.map +1 -0
- package/dist/client/index.d.ts +158 -0
- package/dist/client/index.d.ts.map +1 -0
- package/dist/client/index.js +256 -0
- package/dist/client/index.js.map +1 -0
- package/dist/component/_generated/api.d.ts +12 -0
- package/dist/component/_generated/api.d.ts.map +1 -0
- package/dist/component/_generated/api.js +13 -0
- package/dist/component/_generated/api.js.map +1 -0
- package/dist/component/_generated/dataModel.d.ts +18 -0
- package/dist/component/_generated/dataModel.d.ts.map +1 -0
- package/dist/component/_generated/dataModel.js +11 -0
- package/dist/component/_generated/dataModel.js.map +1 -0
- package/dist/component/_generated/server.d.ts +42 -0
- package/dist/component/_generated/server.d.ts.map +1 -0
- package/dist/component/_generated/server.js +39 -0
- package/dist/component/_generated/server.js.map +1 -0
- package/dist/component/actions.d.ts +42 -0
- package/dist/component/actions.d.ts.map +1 -0
- package/dist/component/actions.js +405 -0
- package/dist/component/actions.js.map +1 -0
- package/dist/component/apiKeyMutations.d.ts +29 -0
- package/dist/component/apiKeyMutations.d.ts.map +1 -0
- package/dist/component/apiKeyMutations.js +149 -0
- package/dist/component/apiKeyMutations.js.map +1 -0
- package/dist/component/apiKeyQueries.d.ts +37 -0
- package/dist/component/apiKeyQueries.d.ts.map +1 -0
- package/dist/component/apiKeyQueries.js +127 -0
- package/dist/component/apiKeyQueries.js.map +1 -0
- package/dist/component/checksum.d.ts +6 -0
- package/dist/component/checksum.d.ts.map +1 -0
- package/dist/component/checksum.js +14 -0
- package/dist/component/checksum.js.map +1 -0
- package/dist/component/checksum.test.d.ts +2 -0
- package/dist/component/checksum.test.d.ts.map +1 -0
- package/dist/component/checksum.test.js +27 -0
- package/dist/component/checksum.test.js.map +1 -0
- package/dist/component/convex.config.d.ts +3 -0
- package/dist/component/convex.config.d.ts.map +1 -0
- package/dist/component/convex.config.js +4 -0
- package/dist/component/convex.config.js.map +1 -0
- package/dist/component/cronActions.d.ts +3 -0
- package/dist/component/cronActions.d.ts.map +1 -0
- package/dist/component/cronActions.js +38 -0
- package/dist/component/cronActions.js.map +1 -0
- package/dist/component/cronQueries.d.ts +6 -0
- package/dist/component/cronQueries.d.ts.map +1 -0
- package/dist/component/cronQueries.js +38 -0
- package/dist/component/cronQueries.js.map +1 -0
- package/dist/component/crons.d.ts +3 -0
- package/dist/component/crons.d.ts.map +1 -0
- package/dist/component/crons.js +18 -0
- package/dist/component/crons.js.map +1 -0
- package/dist/component/format.d.ts +11 -0
- package/dist/component/format.d.ts.map +1 -0
- package/dist/component/format.js +175 -0
- package/dist/component/format.js.map +1 -0
- package/dist/component/format.test.d.ts +2 -0
- package/dist/component/format.test.d.ts.map +1 -0
- package/dist/component/format.test.js +118 -0
- package/dist/component/format.test.js.map +1 -0
- package/dist/component/mutations.d.ts +158 -0
- package/dist/component/mutations.d.ts.map +1 -0
- package/dist/component/mutations.js +745 -0
- package/dist/component/mutations.js.map +1 -0
- package/dist/component/queries.d.ts +94 -0
- package/dist/component/queries.d.ts.map +1 -0
- package/dist/component/queries.js +574 -0
- package/dist/component/queries.js.map +1 -0
- package/dist/component/schema.d.ts +278 -0
- package/dist/component/schema.d.ts.map +1 -0
- package/dist/component/schema.js +161 -0
- package/dist/component/schema.js.map +1 -0
- package/dist/mcp/server.d.ts +11 -0
- package/dist/mcp/server.d.ts.map +1 -0
- package/dist/mcp/server.js +571 -0
- package/dist/mcp/server.js.map +1 -0
- package/dist/shared.d.ts +126 -0
- package/dist/shared.d.ts.map +1 -0
- package/dist/shared.js +67 -0
- package/dist/shared.js.map +1 -0
- package/dist/test.d.ts +23 -0
- package/dist/test.d.ts.map +1 -0
- package/dist/test.js +21 -0
- package/dist/test.js.map +1 -0
- package/eslint.config.js +15 -0
- package/example/convex/convex.config.ts +7 -0
- package/example/convex/memory.ts +129 -0
- package/llms.md +175 -0
- package/llms.txt +126 -0
- package/package.json +72 -0
- package/prds/API-REFERENCE.md +935 -0
- package/prds/README.md +988 -0
- package/prds/SETUP.md +682 -0
- package/src/cli/index.ts +254 -0
- package/src/cli/parsers/claude-code.ts +80 -0
- package/src/cli/parsers/codex.ts +45 -0
- package/src/cli/parsers/conductor.ts +47 -0
- package/src/cli/parsers/cursor.ts +55 -0
- package/src/cli/parsers/index.ts +30 -0
- package/src/cli/parsers/opencode.ts +84 -0
- package/src/cli/parsers/parsers.test.ts +201 -0
- package/src/cli/parsers/pi.ts +47 -0
- package/src/cli/parsers/types.ts +26 -0
- package/src/cli/parsers/vscode-copilot.ts +78 -0
- package/src/cli/parsers/zed.ts +47 -0
- package/src/cli/sync.ts +110 -0
- package/src/cli/type-extractor.test.ts +241 -0
- package/src/cli/type-extractor.ts +331 -0
- package/src/client/http.ts +415 -0
- package/src/client/index.ts +519 -0
- package/src/component/_generated/api.ts +14 -0
- package/src/component/_generated/dataModel.ts +20 -0
- package/src/component/_generated/server.ts +64 -0
- package/src/component/actions.ts +558 -0
- package/src/component/apiKeyMutations.ts +175 -0
- package/src/component/apiKeyQueries.ts +156 -0
- package/src/component/checksum.test.ts +31 -0
- package/src/component/checksum.ts +13 -0
- package/src/component/convex.config.ts +5 -0
- package/src/component/cronActions.ts +52 -0
- package/src/component/cronQueries.ts +42 -0
- package/src/component/crons.ts +34 -0
- package/src/component/format.test.ts +133 -0
- package/src/component/format.ts +232 -0
- package/src/component/mutations.ts +824 -0
- package/src/component/queries.ts +684 -0
- package/src/component/schema.ts +207 -0
- package/src/mcp/server.ts +695 -0
- package/src/shared.ts +251 -0
- package/src/test.ts +32 -0
- package/tsconfig.json +21 -0
- package/vitest.config.ts +8 -0
package/src/shared.ts
ADDED
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
import { v } from "convex/values";
|
|
2
|
+
|
|
3
|
+
// ── Memory types ────────────────────────────────────────────────────
|
|
4
|
+
// instruction: maps to CLAUDE.md / .cursor/rules / AGENTS.md
|
|
5
|
+
// learning: auto-discovered patterns (auto-memory)
|
|
6
|
+
// reference: architecture docs, API specs
|
|
7
|
+
// feedback: corrections, preferences
|
|
8
|
+
// journal: session logs (OpenCode-style)
|
|
9
|
+
|
|
10
|
+
export const MEMORY_TYPES = [
|
|
11
|
+
"instruction",
|
|
12
|
+
"learning",
|
|
13
|
+
"reference",
|
|
14
|
+
"feedback",
|
|
15
|
+
"journal",
|
|
16
|
+
] as const;
|
|
17
|
+
|
|
18
|
+
export type MemoryType = (typeof MEMORY_TYPES)[number];
|
|
19
|
+
|
|
20
|
+
export const memoryTypeValidator = v.union(
|
|
21
|
+
v.literal("instruction"),
|
|
22
|
+
v.literal("learning"),
|
|
23
|
+
v.literal("reference"),
|
|
24
|
+
v.literal("feedback"),
|
|
25
|
+
v.literal("journal"),
|
|
26
|
+
);
|
|
27
|
+
|
|
28
|
+
// ── Scope types ─────────────────────────────────────────────────────
|
|
29
|
+
// project: shared across team via Convex
|
|
30
|
+
// user: personal to one user
|
|
31
|
+
// org: organization-wide policies
|
|
32
|
+
|
|
33
|
+
export const SCOPES = ["project", "user", "org"] as const;
|
|
34
|
+
export type Scope = (typeof SCOPES)[number];
|
|
35
|
+
|
|
36
|
+
export const scopeValidator = v.union(
|
|
37
|
+
v.literal("project"),
|
|
38
|
+
v.literal("user"),
|
|
39
|
+
v.literal("org"),
|
|
40
|
+
);
|
|
41
|
+
|
|
42
|
+
// ── Sync direction ──────────────────────────────────────────────────
|
|
43
|
+
|
|
44
|
+
export const syncDirectionValidator = v.union(
|
|
45
|
+
v.literal("push"),
|
|
46
|
+
v.literal("pull"),
|
|
47
|
+
);
|
|
48
|
+
|
|
49
|
+
// ── Tool formats ────────────────────────────────────────────────────
|
|
50
|
+
|
|
51
|
+
export const TOOL_FORMATS = [
|
|
52
|
+
"claude-code",
|
|
53
|
+
"cursor",
|
|
54
|
+
"opencode",
|
|
55
|
+
"codex",
|
|
56
|
+
"conductor",
|
|
57
|
+
"zed",
|
|
58
|
+
"vscode-copilot",
|
|
59
|
+
"pi",
|
|
60
|
+
"raw",
|
|
61
|
+
] as const;
|
|
62
|
+
|
|
63
|
+
export type ToolFormat = (typeof TOOL_FORMATS)[number];
|
|
64
|
+
|
|
65
|
+
export const toolFormatValidator = v.union(
|
|
66
|
+
v.literal("claude-code"),
|
|
67
|
+
v.literal("cursor"),
|
|
68
|
+
v.literal("opencode"),
|
|
69
|
+
v.literal("codex"),
|
|
70
|
+
v.literal("conductor"),
|
|
71
|
+
v.literal("zed"),
|
|
72
|
+
v.literal("vscode-copilot"),
|
|
73
|
+
v.literal("pi"),
|
|
74
|
+
v.literal("raw"),
|
|
75
|
+
);
|
|
76
|
+
|
|
77
|
+
// ── History events ──────────────────────────────────────────────────
|
|
78
|
+
|
|
79
|
+
export const HISTORY_EVENTS = [
|
|
80
|
+
"created",
|
|
81
|
+
"updated",
|
|
82
|
+
"archived",
|
|
83
|
+
"restored",
|
|
84
|
+
"merged",
|
|
85
|
+
] as const;
|
|
86
|
+
|
|
87
|
+
export type HistoryEvent = (typeof HISTORY_EVENTS)[number];
|
|
88
|
+
|
|
89
|
+
// ── Feedback sentiments ─────────────────────────────────────────────
|
|
90
|
+
|
|
91
|
+
export const FEEDBACK_SENTIMENTS = [
|
|
92
|
+
"positive",
|
|
93
|
+
"negative",
|
|
94
|
+
"very_negative",
|
|
95
|
+
] as const;
|
|
96
|
+
|
|
97
|
+
export type FeedbackSentiment = (typeof FEEDBACK_SENTIMENTS)[number];
|
|
98
|
+
|
|
99
|
+
// ── Ingest events ───────────────────────────────────────────────────
|
|
100
|
+
|
|
101
|
+
export const INGEST_EVENTS = [
|
|
102
|
+
"added",
|
|
103
|
+
"updated",
|
|
104
|
+
"deleted",
|
|
105
|
+
"skipped",
|
|
106
|
+
] as const;
|
|
107
|
+
|
|
108
|
+
export type IngestEvent = (typeof INGEST_EVENTS)[number];
|
|
109
|
+
|
|
110
|
+
// ── Memory document shape (for client-side typing) ──────────────────
|
|
111
|
+
|
|
112
|
+
export interface Memory {
|
|
113
|
+
_id: string;
|
|
114
|
+
_creationTime: number;
|
|
115
|
+
projectId: string;
|
|
116
|
+
scope: Scope;
|
|
117
|
+
userId?: string;
|
|
118
|
+
agentId?: string;
|
|
119
|
+
sessionId?: string;
|
|
120
|
+
title: string;
|
|
121
|
+
content: string;
|
|
122
|
+
memoryType: MemoryType;
|
|
123
|
+
tags: string[];
|
|
124
|
+
paths?: string[];
|
|
125
|
+
priority?: number;
|
|
126
|
+
source?: string;
|
|
127
|
+
lastSyncedAt?: number;
|
|
128
|
+
checksum: string;
|
|
129
|
+
archived: boolean;
|
|
130
|
+
embeddingId?: string;
|
|
131
|
+
// Access tracking
|
|
132
|
+
accessCount?: number;
|
|
133
|
+
lastAccessedAt?: number;
|
|
134
|
+
// Feedback aggregation
|
|
135
|
+
positiveCount?: number;
|
|
136
|
+
negativeCount?: number;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
export interface ContextBundle {
|
|
140
|
+
pinned: Memory[];
|
|
141
|
+
relevant: Memory[];
|
|
142
|
+
available: Array<{
|
|
143
|
+
_id: string;
|
|
144
|
+
title: string;
|
|
145
|
+
memoryType: MemoryType;
|
|
146
|
+
priority: number;
|
|
147
|
+
}>;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
export interface ExportedFile {
|
|
151
|
+
path: string;
|
|
152
|
+
content: string;
|
|
153
|
+
checksum: string;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export interface ImportResult {
|
|
157
|
+
created: number;
|
|
158
|
+
updated: number;
|
|
159
|
+
unchanged: number;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
// ── History record ──────────────────────────────────────────────────
|
|
163
|
+
|
|
164
|
+
export interface MemoryHistoryEntry {
|
|
165
|
+
_id: string;
|
|
166
|
+
_creationTime: number;
|
|
167
|
+
memoryId: string;
|
|
168
|
+
projectId: string;
|
|
169
|
+
previousContent?: string;
|
|
170
|
+
newContent?: string;
|
|
171
|
+
previousTitle?: string;
|
|
172
|
+
newTitle?: string;
|
|
173
|
+
event: HistoryEvent;
|
|
174
|
+
actor: string;
|
|
175
|
+
timestamp: number;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// ── Feedback record ─────────────────────────────────────────────────
|
|
179
|
+
|
|
180
|
+
export interface MemoryFeedbackEntry {
|
|
181
|
+
_id: string;
|
|
182
|
+
_creationTime: number;
|
|
183
|
+
memoryId: string;
|
|
184
|
+
projectId: string;
|
|
185
|
+
sentiment: FeedbackSentiment;
|
|
186
|
+
comment?: string;
|
|
187
|
+
actor: string;
|
|
188
|
+
timestamp: number;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
// ── Memory relation ─────────────────────────────────────────────────
|
|
192
|
+
|
|
193
|
+
export interface MemoryRelation {
|
|
194
|
+
_id: string;
|
|
195
|
+
_creationTime: number;
|
|
196
|
+
projectId: string;
|
|
197
|
+
fromMemoryId: string;
|
|
198
|
+
toMemoryId: string;
|
|
199
|
+
relationship: string;
|
|
200
|
+
metadata?: {
|
|
201
|
+
confidence?: number;
|
|
202
|
+
createdBy?: string;
|
|
203
|
+
};
|
|
204
|
+
timestamp: number;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// ── Ingest result ───────────────────────────────────────────────────
|
|
208
|
+
|
|
209
|
+
export interface IngestResult {
|
|
210
|
+
results: Array<{
|
|
211
|
+
memoryId: string;
|
|
212
|
+
content: string;
|
|
213
|
+
event: IngestEvent;
|
|
214
|
+
previousContent?: string;
|
|
215
|
+
}>;
|
|
216
|
+
totalProcessed: number;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
// ── API key types ───────────────────────────────────────────────────
|
|
220
|
+
|
|
221
|
+
export interface ApiKeyInfo {
|
|
222
|
+
_id: string;
|
|
223
|
+
keyHash: string;
|
|
224
|
+
projectId: string;
|
|
225
|
+
name: string;
|
|
226
|
+
permissions: string[];
|
|
227
|
+
rateLimitOverride?: {
|
|
228
|
+
requestsPerWindow: number;
|
|
229
|
+
windowMs: number;
|
|
230
|
+
};
|
|
231
|
+
lastUsedAt?: number;
|
|
232
|
+
expiresAt?: number;
|
|
233
|
+
revoked: boolean;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
export interface ApiKeyCreateResult {
|
|
237
|
+
key: string; // plaintext key — only returned once
|
|
238
|
+
keyHash: string;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
export const API_PERMISSIONS = [
|
|
242
|
+
"list",
|
|
243
|
+
"get",
|
|
244
|
+
"search",
|
|
245
|
+
"context",
|
|
246
|
+
"export",
|
|
247
|
+
"history",
|
|
248
|
+
"relations",
|
|
249
|
+
] as const;
|
|
250
|
+
|
|
251
|
+
export type ApiPermission = (typeof API_PERMISSIONS)[number];
|
package/src/test.ts
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import schema from "./component/schema.js";
|
|
2
|
+
|
|
3
|
+
// Vite's import.meta.glob — typed for convex-test compatibility
|
|
4
|
+
declare global {
|
|
5
|
+
interface ImportMeta {
|
|
6
|
+
glob(pattern: string): Record<string, () => Promise<unknown>>;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const modules = import.meta.glob("./component/**/*.ts");
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Register the agentMemory component in a convex-test instance.
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```ts
|
|
17
|
+
* import agentMemoryTest from "@waynesutton/agent-memory/test";
|
|
18
|
+
* import { convexTest } from "convex-test";
|
|
19
|
+
*
|
|
20
|
+
* const t = convexTest();
|
|
21
|
+
* agentMemoryTest.register(t);
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
export function register(
|
|
25
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
26
|
+
t: any,
|
|
27
|
+
name: string = "agentMemory",
|
|
28
|
+
) {
|
|
29
|
+
t.registerComponent(name, schema, modules);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export default { register };
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"module": "ES2022",
|
|
5
|
+
"moduleResolution": "bundler",
|
|
6
|
+
"outDir": "./dist",
|
|
7
|
+
"rootDir": "./src",
|
|
8
|
+
"declaration": true,
|
|
9
|
+
"declarationMap": true,
|
|
10
|
+
"sourceMap": true,
|
|
11
|
+
"strict": true,
|
|
12
|
+
"esModuleInterop": true,
|
|
13
|
+
"skipLibCheck": true,
|
|
14
|
+
"forceConsistentCasingInFileNames": true,
|
|
15
|
+
"resolveJsonModule": true,
|
|
16
|
+
"isolatedModules": true,
|
|
17
|
+
"jsx": "react-jsx"
|
|
18
|
+
},
|
|
19
|
+
"include": ["src/**/*"],
|
|
20
|
+
"exclude": ["node_modules", "dist", "example"]
|
|
21
|
+
}
|