Skip to content

Commit 9a1f14c

Browse files
committed
add strict to db adapters
1 parent becf262 commit 9a1f14c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/adapter-postgres/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": "src"
5+
"rootDir": "src",
6+
"strict": true
67
},
78
"include": ["src/**/*.ts"]
89
}

packages/adapter-sqlite/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": "src"
5+
"rootDir": "src",
6+
"strict": true
67
},
78
"include": ["src/**/*.ts"]
89
}

0 commit comments

Comments
 (0)