-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathtsconfig.build.json
More file actions
49 lines (49 loc) · 1.66 KB
/
tsconfig.build.json
File metadata and controls
49 lines (49 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
45
46
47
48
49
{
"extends": "./tsconfig.json",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowImportingTsExtensions": true,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"noEmit": false,
"outDir": "./dist",
"resolveJsonModule": true,
"rootDir": "./src",
"rewriteRelativeImportExtensions": true,
"stripInternal": true,
"tsBuildInfoFile": "./dist/.tsbuildinfo",
"paths": {
"@elizaos/ui": ["../ui/dist/index.d.ts"],
"@elizaos/tui": ["../tui/dist/index.d.ts"],
"@elizaos/shared": ["../shared/dist/index.d.ts"],
"@elizaos/skills": ["../skills/dist/index.d.ts"],
"@elizaos/core": ["../core/dist/index.d.ts"],
"@elizaos/agent": ["./src/index.ts"],
"@elizaos/plugin-coding-tools": [
"../../plugins/plugin-coding-tools/dist/index.d.ts"
],
"@elizaos/plugin-browser": [
"../../plugins/plugin-browser/dist/index.d.ts"
],
"@elizaos/plugin-app-manager": [
"../../plugins/plugin-app-manager/src/index.ts"
],
"@elizaos/plugin-elizacloud": ["./src/external-modules.d.ts"]
},
"types": ["node", "bun-types", "react", "react-dom"],
"typeRoots": [
"../../node_modules/@types",
"../../node_modules/.bun/node_modules/@types",
"../../../node_modules/@types",
"../../../node_modules/.bun/node_modules/@types",
"node_modules/@types",
"../../node_modules",
"../../node_modules/.bun/node_modules",
"../../../node_modules",
"../../../node_modules/.bun/node_modules"
]
},
"exclude": ["src/**/*.test.ts", "src/**/*.test.tsx"],
"include": ["src", "vite-env.d.ts"]
}