-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathtsconfig.json
More file actions
56 lines (56 loc) · 1.67 KB
/
tsconfig.json
File metadata and controls
56 lines (56 loc) · 1.67 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
{
"extends": "../../tsconfig.json",
// Sources only: build emits JS to dist/; declarations via tsconfig.declarations.json + build.ts. Stray .js/.d.ts next to .ts are accidental IDE/tsc emits — remove with bun run clean.
"compilerOptions": {
"outDir": "./dist",
"rootDir": "../../",
"ignoreDeprecations": "6.0",
"sourceMap": false,
"inlineSourceMap": false,
"typeRoots": [
"../../node_modules/@types",
"../../node_modules",
"../../../node_modules/@types",
"../../../node_modules"
],
"types": ["node"],
"noEmit": true,
"composite": false,
"declaration": false,
"declarationMap": false,
"skipLibCheck": true,
"paths": {
"@elizaos/contracts": ["../contracts/src/index.ts"],
"@elizaos/contracts/*": ["../contracts/src/*"],
"@elizaos/core": ["./src/index.node.ts"],
"@elizaos/shared": ["../shared/src/index.ts"],
"@elizaos/plugin-elizacloud": [
"../../plugins/plugin-elizacloud/src/index.node.ts"
],
"@elizaos/plugin-signal": ["../../plugins/plugin-signal/src/index.ts"],
"@elizaos/plugin-sql": ["../../plugins/plugin-sql/src/index.node.ts"],
"@elizaos/plugin-browser": ["../../plugins/plugin-browser/src/index.ts"],
"@elizaos/plugin-computeruse": [
"../../plugins/plugin-computeruse/src/index.ts"
],
"@elizaos/plugin-whatsapp": [
"../../plugins/plugin-whatsapp/src/index.ts"
],
"@elizaos/plugin-task-coordinator": [
"../../plugins/plugin-task-coordinator/src/api/coordinator-types.ts"
]
}
},
"include": [
"src/**/*.ts",
"../@schemas/**/*.ts",
"../agent/src/external-modules.d.ts"
],
"exclude": [
"vitest.config.ts",
"node_modules",
"dist",
"src/**/__tests__/**",
"src/**/*.test.ts"
]
}