diff --git a/packages/db/tsconfig.build.json b/packages/db/tsconfig.build.json index 680caeb7..278e83e3 100644 --- a/packages/db/tsconfig.build.json +++ b/packages/db/tsconfig.build.json @@ -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, } \ No newline at end of file diff --git a/packages/node/tsconfig.build.json b/packages/node/tsconfig.build.json index 1f800138..fcd2fa7e 100644 --- a/packages/node/tsconfig.build.json +++ b/packages/node/tsconfig.build.json @@ -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, } \ No newline at end of file