Skip to content

Commit 9ec2cad

Browse files
committed
Fix tsconfig for pg-protocol and pg-query-stream
1 parent 62c67ae commit 9ec2cad

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

packages/pg-protocol/tsconfig.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,19 @@
99
"moduleResolution": "node16",
1010
"sourceMap": true,
1111
"outDir": "dist",
12+
"rootDir": "./src",
1213
"incremental": true,
13-
"baseUrl": ".",
1414
"declaration": true,
1515
"paths": {
1616
"*": [
17-
"node_modules/*",
18-
"src/types/*"
17+
"./node_modules/*",
18+
"./src/types/*"
1919
]
20-
}
20+
},
21+
"types": [
22+
"node",
23+
"mocha"
24+
]
2125
},
2226
"include": [
2327
"src/**/*"

packages/pg-query-stream/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"sourceMap": true,
1111
"pretty": true,
1212
"outDir": "dist",
13+
"rootDir": "./src",
1314
"incremental": true,
14-
"baseUrl": ".",
1515
"declaration": true,
1616
"types": [
1717
"node",

0 commit comments

Comments
 (0)