Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"test:packages": "yarn test:verbose --silent --collectCoverage=false --reporters=jest-silent-reporter",
"test:scripts": "NODE_OPTIONS=--experimental-vm-modules yarn jest --config ./jest.config.scripts.js --silent",
"test:verbose": "yarn workspaces foreach --all --parallel --verbose run test:verbose",
"typecheck": "yarn workspaces foreach --all --no-private --parallel --interlaced --verbose run typecheck",
"workspaces:list-versions": "./scripts/list-workspace-versions.sh",
"skills": "metamask-skills sync",
"skills:postinstall": "metamask-skills postinstall",
Expand Down
3 changes: 2 additions & 1 deletion packages/account-tree-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@metamask/accounts-controller": "^39.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import {
import type { KeyringObject } from '@metamask/keyring-controller';
import { KeyringTypes } from '@metamask/keyring-controller';
import type { InternalAccount } from '@metamask/keyring-internal-api';
import type { GetSnap as SnapControllerGetSnap } from '@metamask/snaps-controllers';
import type { SnapControllerGetSnapAction as SnapControllerGetSnap } from '@metamask/snaps-controllers';

import {
getAccountTreeControllerMessenger,
Expand Down
21 changes: 1 addition & 20 deletions packages/account-tree-controller/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,6 @@
"compilerOptions": {
"baseUrl": "./"
},
"references": [
{
"path": "../base-controller"
},
{
"path": "../keyring-controller"
},
{
"path": "../accounts-controller"
},
{
"path": "../messenger"
},
{
"path": "../multichain-account-service"
},
{
"path": "../profile-sync-controller"
}
],
"references": [],
"include": ["../../types", "./src", "./tests"]
}
3 changes: 2 additions & 1 deletion packages/accounts-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@ethereumjs/util": "^9.1.0",
Expand Down
11 changes: 1 addition & 10 deletions packages/accounts-controller/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,6 @@
"compilerOptions": {
"baseUrl": "./"
},
"references": [
{
"path": "../base-controller"
},
{
"path": "../keyring-controller"
},
{ "path": "../network-controller" },
{ "path": "../messenger" }
],
"references": [],
"include": ["../../types", "./src", "./tests"]
}
3 changes: 2 additions & 1 deletion packages/address-book-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@metamask/base-controller": "^9.1.0",
Expand Down
6 changes: 1 addition & 5 deletions packages/address-book-controller/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
"compilerOptions": {
"baseUrl": "./"
},
"references": [
{ "path": "../base-controller" },
{ "path": "../controller-utils" },
{ "path": "../messenger" }
],
"references": [],
"include": ["../../types", "./src"]
}
3 changes: 2 additions & 1 deletion packages/ai-controllers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@metamask/base-controller": "^9.1.0",
Expand Down
1 change: 1 addition & 0 deletions packages/ai-controllers/src/AiDigestController.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import type {
} from '.';

const mockReport: MarketInsightsReport = {
digestId: 'digest-btc-1',
version: '1.0',
asset: 'btc',
generatedAt: '2026-02-11T10:32:52.403Z',
Expand Down
2 changes: 1 addition & 1 deletion packages/ai-controllers/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"compilerOptions": {
"baseUrl": "./"
},
"references": [{ "path": "../base-controller" }, { "path": "../messenger" }],
"references": [],
"include": ["../../types", "./src"]
}
3 changes: 2 additions & 1 deletion packages/analytics-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@metamask/base-controller": "^9.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/analytics-controller/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"compilerOptions": {
"baseUrl": "./"
},
"references": [{ "path": "../base-controller" }, { "path": "../messenger" }],
"references": [],
"include": ["../../types", "./src"]
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@metamask/base-controller": "^9.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
"compilerOptions": {
"baseUrl": "./"
},
"references": [
{ "path": "../base-controller" },
{ "path": "../controller-utils" },
{ "path": "../messenger" }
],
"references": [],
"include": ["../../types", "./src"]
}
3 changes: 2 additions & 1 deletion packages/announcement-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@metamask/base-controller": "^9.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/announcement-controller/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"compilerOptions": {
"baseUrl": "./"
},
"references": [{ "path": "../base-controller" }, { "path": "../messenger" }],
"references": [],
"include": ["../../types", "./src"]
}
3 changes: 2 additions & 1 deletion packages/app-metadata-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@metamask/base-controller": "^9.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-metadata-controller/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"compilerOptions": {
"baseUrl": "./"
},
"references": [{ "path": "../base-controller" }, { "path": "../messenger" }],
"references": [],
"include": ["../../types", "./src"]
}
3 changes: 2 additions & 1 deletion packages/approval-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@metamask/base-controller": "^9.1.0",
Expand Down
9 changes: 1 addition & 8 deletions packages/approval-controller/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@
"compilerOptions": {
"baseUrl": "./"
},
"references": [
{
"path": "../base-controller"
},
{
"path": "../messenger"
}
],
"references": [],
"include": ["../../types", "./src"]
}
3 changes: 2 additions & 1 deletion packages/assets-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@ethereumjs/util": "^9.1.0",
Expand Down
13 changes: 1 addition & 12 deletions packages/assets-controller/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,6 @@
"compilerOptions": {
"baseUrl": "./"
},
"references": [
{ "path": "../account-tree-controller" },
{ "path": "../assets-controllers" },
{ "path": "../base-controller" },
{ "path": "../client-controller" },
{ "path": "../core-backend" },
{ "path": "../keyring-controller" },
{ "path": "../messenger" },
{ "path": "../network-enablement-controller" },
{ "path": "../phishing-controller" },
{ "path": "../preferences-controller" }
],
"references": [],
"include": ["../../types", "./src"]
}
3 changes: 2 additions & 1 deletion packages/assets-controllers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@ethereumjs/util": "^9.1.0",
Expand Down
19 changes: 1 addition & 18 deletions packages/assets-controllers/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,6 @@
"baseUrl": "./",
"rootDir": "../.."
},
"references": [
{ "path": "../account-tree-controller" },
{ "path": "../accounts-controller" },
{ "path": "../approval-controller" },
{ "path": "../core-backend" },
{ "path": "../base-controller" },
{ "path": "../controller-utils" },
{ "path": "../keyring-controller" },
{ "path": "../network-controller" },
{ "path": "../network-enablement-controller" },
{ "path": "../messenger" },
{ "path": "../preferences-controller" },
{ "path": "../phishing-controller" },
{ "path": "../polling-controller" },
{ "path": "../permission-controller" },
{ "path": "../storage-service" },
{ "path": "../transaction-controller" }
],
"references": [],
"include": ["../../types", "./src", "../../tests"]
}
3 changes: 2 additions & 1 deletion packages/authenticated-user-storage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@metamask/base-data-service": "^0.1.3",
Expand Down
6 changes: 1 addition & 5 deletions packages/authenticated-user-storage/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
"compilerOptions": {
"baseUrl": "./"
},
"references": [
{ "path": "../base-data-service" },
{ "path": "../controller-utils" },
{ "path": "../messenger" }
],
"references": [],
"include": ["../../types", "./src", "./tests"]
}
3 changes: 2 additions & 1 deletion packages/base-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@metamask/messenger": "^1.2.0",
Expand Down
12 changes: 1 addition & 11 deletions packages/base-controller/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,6 @@
"compilerOptions": {
"baseUrl": "./"
},
"references": [
{
"path": "../controller-utils"
},
{
"path": "../json-rpc-engine"
},
{
"path": "../messenger"
}
],
"references": [],
"include": ["../../types", "./src", "./tests"]
}
3 changes: 2 additions & 1 deletion packages/base-data-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@metamask/controller-utils": "^12.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/base-data-service/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"compilerOptions": {
"baseUrl": "./"
},
"references": [{ "path": "../messenger" }, { "path": "../controller-utils" }],
"references": [],
"include": ["../../types", "./src", "./tests"]
}
3 changes: 2 additions & 1 deletion packages/bridge-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@ethersproject/address": "^5.7.0",
Expand Down
15 changes: 1 addition & 14 deletions packages/bridge-controller/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,6 @@
"baseUrl": "./",
"resolveJsonModule": true
},
"references": [
{ "path": "../accounts-controller" },
{ "path": "../base-controller" },
{ "path": "../controller-utils" },
{ "path": "../network-controller" },
{ "path": "../polling-controller" },
{ "path": "../transaction-controller" },
{ "path": "../gas-fee-controller" },
{ "path": "../assets-controllers" },
{ "path": "../multichain-network-controller" },
{ "path": "../profile-sync-controller" },
{ "path": "../remote-feature-flag-controller" },
{ "path": "../assets-controller" }
],
"references": [],
"include": ["../../types", "./src", "./tests"]
}
Loading
Loading