From 3757af9982981d349e60873880c5b28adafb9363 Mon Sep 17 00:00:00 2001 From: Blazej Kustra Date: Tue, 3 Sep 2024 16:48:11 +0200 Subject: [PATCH] [No QA] Allocate more memory for typecheck --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3f86d843ae52..601f31d39949 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "android-build-e2e": "bundle exec fastlane android build_e2e", "android-build-e2edelta": "bundle exec fastlane android build_e2edelta", "test": "TZ=utc NODE_OPTIONS=--experimental-vm-modules jest", - "typecheck": "tsc", + "typecheck": "NODE_OPTIONS=--max_old_space_size=8192 tsc", "lint": "NODE_OPTIONS=--max_old_space_size=8192 eslint . --max-warnings=0 --cache --cache-location=node_modules/.cache/eslint", "lint-changed": "eslint --fix $(git diff --diff-filter=AM --name-only main -- \"*.js\" \"*.ts\" \"*.tsx\")", "lint-watch": "npx eslint-watch --watch --changed",