Skip to content
Merged
8 changes: 4 additions & 4 deletions packages/accounts-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
},
"dependencies": {
"@metamask/base-controller": "^3.2.3",
"@metamask/eth-snap-keyring": "^0.2.2",
"@metamask/keyring-api": "^0.2.5",
"@metamask/snaps-utils": "^1.0.1",
"@metamask/eth-snap-keyring": "^1.0.0",
"@metamask/keyring-api": "^1.0.0",
"@metamask/snaps-utils": "^3.0.0",
"@metamask/utils": "^8.1.0",
"deepmerge": "^4.2.2",
"ethereumjs-util": "^7.0.10",
Expand All @@ -42,7 +42,7 @@
"devDependencies": {
"@metamask/auto-changelog": "^3.1.0",
"@metamask/keyring-controller": "^8.0.2",
"@metamask/snaps-controllers": "^1.0.1",
"@metamask/snaps-controllers": "^3.0.0",
"@types/jest": "^27.4.1",
"@types/readable-stream": "^2.3.0",
"jest": "^27.5.1",
Expand Down
3 changes: 2 additions & 1 deletion packages/accounts-controller/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist",
"rootDir": "./src"
"rootDir": "./src",
"skipLibCheck": true
Copy link
Contributor Author

@montelaidev montelaidev Oct 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ignoring type errors from @metamask/rpc-methods

node_modules/@metamask/rpc-methods/dist/types/restricted/getLocale.d.ts:46:113 - error TS2344: Type 'void' does not satisfy the constraint 'RestrictedMethodParameters | null'.

export declare function getImplementation({ getLocale }: GetLocaleMethodHooks): (_args: RestrictedMethodOptions<void>) => Promise<string>;

Will revert once it is fixed

},
"references": [
{
Expand Down
Loading