Skip to content

Commit

Permalink
fix typeroots
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSulpiride committed Oct 2, 2023
1 parent d682945 commit b761e65
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
9 changes: 7 additions & 2 deletions packages/db/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"include": ["src"],
"compilerOptions": {
"outDir": "lib",
"typeRoots": ["../../node_modules/@types", "./node_modules/@types", "../../types"]
}
"typeRoots": [
"../../types",
"../../node_modules/@types",
"./node_modules/@types",
]
},
"noImplicitAny": false,
}
6 changes: 5 additions & 1 deletion packages/node/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
"include": ["src"],
"compilerOptions": {
"outDir": "lib",
"typeRoots": ["../../node_modules/@types", "./node_modules/@types", "../../types"]
"typeRoots": [
"../../types",
"../../node_modules/@types",
"./node_modules/@types"
]
},
"noImplicitAny": false,
}

0 comments on commit b761e65

Please sign in to comment.