-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathtsconfig.declarations.json
More file actions
42 lines (42 loc) · 1.04 KB
/
tsconfig.declarations.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"moduleResolution": "bundler",
"typeRoots": [
"../../node_modules/@types",
"../../node_modules/.bun/node_modules/@types",
"../../node_modules",
"../../node_modules/.bun/node_modules",
"../../../node_modules/@types",
"../../../node_modules/.bun/node_modules/@types",
"../../../node_modules",
"../../../node_modules/.bun/node_modules"
],
"types": ["node", "bun"],
"noEmit": false,
"emitDeclarationOnly": true,
"composite": false,
"incremental": false,
"skipLibCheck": true,
"paths": {
"@elizaos/contracts": ["../contracts/dist/index.d.ts"],
"@elizaos/contracts/*": ["../contracts/dist/*.d.ts"],
"@elizaos/core": ["./src/index.node.ts"],
"@elizaos/shared": ["../shared/src/index.ts"]
}
},
"include": [
"src/external-modules.ts",
"src/index.ts",
"src/index.node.ts",
"src/index.browser.ts"
],
"exclude": [
"src/**/*.test.ts",
"src/**/*.spec.ts",
"src/__tests__/**/*",
"src/testing/**/*"
]
}