Skip to content

Commit

Permalink
Merge pull request #431 from ai16z/fix-config
Browse files Browse the repository at this point in the history
fix: configs
  • Loading branch information
ponderingdemocritus authored Nov 20, 2024
2 parents ede2cc3 + a7bf8fb commit a1d0efc
Show file tree
Hide file tree
Showing 20 changed files with 40 additions and 42 deletions.
2 changes: 1 addition & 1 deletion packages/adapter-postgres/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ai16z/adapter-postgres",
"version": "0.1.1",
"main": "src/index.ts",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/adapter-postgres/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["src"]
"include": ["src/**/*.ts"]
}
2 changes: 1 addition & 1 deletion packages/adapter-sqlite/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ai16z/adapter-sqlite",
"version": "0.1.1",
"main": "src/index.ts",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/adapter-sqlite/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["src"]
"include": ["src/**/*.ts"]
}
4 changes: 2 additions & 2 deletions packages/adapter-sqljs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["src"]
"include": ["src/**/*.ts"]
}
4 changes: 2 additions & 2 deletions packages/adapter-supabase/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["src"]
"include": ["src/**/*.ts"]
}
4 changes: 2 additions & 2 deletions packages/client-auto/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["src"]
"include": ["src/**/*.ts"]
}
4 changes: 2 additions & 2 deletions packages/client-direct/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["src"]
"include": ["src/**/*.ts"]
}
4 changes: 2 additions & 2 deletions packages/client-discord/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["src"]
"include": ["src/**/*.ts"]
}
3 changes: 2 additions & 1 deletion packages/client-telegram/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "@ai16z/client-telegram",
"version": "0.1.1",
"main": "src/index.ts",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"dependencies": {
"@ai16z/eliza": "workspace:*",
"@ai16z/plugin-node": "workspace:*",
Expand Down
4 changes: 2 additions & 2 deletions packages/client-telegram/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["src"]
"include": ["src/**/*.ts"]
}
4 changes: 2 additions & 2 deletions packages/client-twitter/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["src"]
"include": ["src/**/*.ts"]
}
4 changes: 2 additions & 2 deletions packages/plugin-bootstrap/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": ".",
"rootDir": "src",
"types": ["node"]
},
"include": ["src"]
"include": ["src/**/*.ts"]
}
4 changes: 2 additions & 2 deletions packages/plugin-image-generation/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": ".",
"rootDir": "src",
"types": ["node"]
},
"include": ["src"]
"include": ["src/**/*.ts"]
}
4 changes: 2 additions & 2 deletions packages/plugin-node/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": ".",
"rootDir": "src",
"types": ["node"]
},
"include": ["src"]
"include": ["src/**/*.ts"]
}
4 changes: 2 additions & 2 deletions packages/plugin-solana/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["src"]
"include": ["src/**/*.ts"]
}
4 changes: 2 additions & 2 deletions packages/plugin-starknet/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["src"]
"include": ["src/**/*.ts"]
}
4 changes: 2 additions & 2 deletions packages/plugin-trustdb/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["src"]
"include": ["src/**/*.ts"]
}
3 changes: 2 additions & 1 deletion packages/plugin-video-generation/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
!dist/**
!package.json
!readme.md
!tsup.config.ts
!tsup.config.ts
!tsconfig.json
12 changes: 4 additions & 8 deletions packages/plugin-video-generation/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": ".",
"rootDir": "src",
"module": "ESNext",
"moduleResolution": "Bundler",
"types": [
"node"
]
"types": ["node"]
},
"include": [
"src"
]
}
"include": ["src/**/*.ts"]
}

0 comments on commit a1d0efc

Please sign in to comment.