Skip to content

Commit a1d0efc

Browse files
Merge pull request #431 from ai16z/fix-config
fix: configs
2 parents ede2cc3 + a7bf8fb commit a1d0efc

File tree

20 files changed

+40
-42
lines changed

20 files changed

+40
-42
lines changed

packages/adapter-postgres/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ai16z/adapter-postgres",
33
"version": "0.1.1",
4-
"main": "src/index.ts",
4+
"main": "dist/index.js",
55
"type": "module",
66
"types": "dist/index.d.ts",
77
"dependencies": {

packages/adapter-postgres/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": "./src"
5+
"rootDir": "src"
66
},
7-
"include": ["src"]
7+
"include": ["src/**/*.ts"]
88
}

packages/adapter-sqlite/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ai16z/adapter-sqlite",
33
"version": "0.1.1",
4-
"main": "src/index.ts",
4+
"main": "dist/index.js",
55
"type": "module",
66
"types": "dist/index.d.ts",
77
"dependencies": {

packages/adapter-sqlite/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": "./src"
5+
"rootDir": "src"
66
},
7-
"include": ["src"]
7+
"include": ["src/**/*.ts"]
88
}

packages/adapter-sqljs/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": "./src"
5+
"rootDir": "src"
66
},
7-
"include": ["src"]
7+
"include": ["src/**/*.ts"]
88
}

packages/adapter-supabase/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": "./src"
5+
"rootDir": "src"
66
},
7-
"include": ["src"]
7+
"include": ["src/**/*.ts"]
88
}

packages/client-auto/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": "./src"
5+
"rootDir": "src"
66
},
7-
"include": ["src"]
7+
"include": ["src/**/*.ts"]
88
}

packages/client-direct/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": "./src"
5+
"rootDir": "src"
66
},
7-
"include": ["src"]
7+
"include": ["src/**/*.ts"]
88
}

packages/client-discord/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": "./src"
5+
"rootDir": "src"
66
},
7-
"include": ["src"]
7+
"include": ["src/**/*.ts"]
88
}

packages/client-telegram/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"name": "@ai16z/client-telegram",
33
"version": "0.1.1",
4-
"main": "src/index.ts",
4+
"main": "dist/index.js",
55
"type": "module",
6+
"types": "dist/index.d.ts",
67
"dependencies": {
78
"@ai16z/eliza": "workspace:*",
89
"@ai16z/plugin-node": "workspace:*",

packages/client-telegram/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": "./src"
5+
"rootDir": "src"
66
},
7-
"include": ["src"]
7+
"include": ["src/**/*.ts"]
88
}

packages/client-twitter/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": "./src"
5+
"rootDir": "src"
66
},
7-
"include": ["src"]
7+
"include": ["src/**/*.ts"]
88
}

packages/plugin-bootstrap/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": ".",
5+
"rootDir": "src",
66
"types": ["node"]
77
},
8-
"include": ["src"]
8+
"include": ["src/**/*.ts"]
99
}

packages/plugin-image-generation/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": ".",
5+
"rootDir": "src",
66
"types": ["node"]
77
},
8-
"include": ["src"]
8+
"include": ["src/**/*.ts"]
99
}

packages/plugin-node/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": ".",
5+
"rootDir": "src",
66
"types": ["node"]
77
},
8-
"include": ["src"]
8+
"include": ["src/**/*.ts"]
99
}

packages/plugin-solana/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": "./src"
5+
"rootDir": "src"
66
},
7-
"include": ["src"]
7+
"include": ["src/**/*.ts"]
88
}

packages/plugin-starknet/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": "./src"
5+
"rootDir": "src"
66
},
7-
"include": ["src"]
7+
"include": ["src/**/*.ts"]
88
}

packages/plugin-trustdb/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": "./src"
5+
"rootDir": "src"
66
},
7-
"include": ["src"]
7+
"include": ["src/**/*.ts"]
88
}

packages/plugin-video-generation/.npmignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
!dist/**
44
!package.json
55
!readme.md
6-
!tsup.config.ts
6+
!tsup.config.ts
7+
!tsconfig.json

packages/plugin-video-generation/tsconfig.json

+4-8
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,10 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": ".",
5+
"rootDir": "src",
66
"module": "ESNext",
77
"moduleResolution": "Bundler",
8-
"types": [
9-
"node"
10-
]
8+
"types": ["node"]
119
},
12-
"include": [
13-
"src"
14-
]
15-
}
10+
"include": ["src/**/*.ts"]
11+
}

0 commit comments

Comments
 (0)