From cc8781f808291749950b59f4a604b976d51de719 Mon Sep 17 00:00:00 2001 From: Andrew Taran Date: Thu, 23 Jul 2026 19:13:48 +0200 Subject: [PATCH] chore: tron migration - replace config files --- .../tron-wallet-snap/{jest.config.js => jest.config.mjs} | 0 ....integration.config.js => jest.integration.config.mjs} | 0 merged-packages/tron-wallet-snap/tsconfig.json | 8 ++++++++ 3 files changed, 8 insertions(+) rename merged-packages/tron-wallet-snap/{jest.config.js => jest.config.mjs} (100%) rename merged-packages/tron-wallet-snap/{jest.integration.config.js => jest.integration.config.mjs} (100%) diff --git a/merged-packages/tron-wallet-snap/jest.config.js b/merged-packages/tron-wallet-snap/jest.config.mjs similarity index 100% rename from merged-packages/tron-wallet-snap/jest.config.js rename to merged-packages/tron-wallet-snap/jest.config.mjs diff --git a/merged-packages/tron-wallet-snap/jest.integration.config.js b/merged-packages/tron-wallet-snap/jest.integration.config.mjs similarity index 100% rename from merged-packages/tron-wallet-snap/jest.integration.config.js rename to merged-packages/tron-wallet-snap/jest.integration.config.mjs diff --git a/merged-packages/tron-wallet-snap/tsconfig.json b/merged-packages/tron-wallet-snap/tsconfig.json index 99b45e34..943ed741 100644 --- a/merged-packages/tron-wallet-snap/tsconfig.json +++ b/merged-packages/tron-wallet-snap/tsconfig.json @@ -5,6 +5,14 @@ "jsx": "react-jsx", "jsxImportSource": "@metamask/snaps-sdk", "exactOptionalPropertyTypes": false, + "forceConsistentCasingInFileNames": true, + "noErrorTruncation": true, + "noUncheckedIndexedAccess": true, + "skipLibCheck": true, + "lib": ["ES2023", "DOM"], + "target": "es2023", + "module": "CommonJS", + "moduleResolution": "node", "types": ["jest"] }, "include": ["**/*.ts", "**/*.tsx", "locales/*.json"]