From d4c3b94e293b667aa62b2cf70148ace3c812eb00 Mon Sep 17 00:00:00 2001 From: younglim Date: Mon, 14 Oct 2024 17:51:31 +0800 Subject: [PATCH] Large scan support for npm start as well --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3ca9ee80..c1e17a1f 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,7 @@ "build": "npm run copyfiles && tsc", "build:watch": "npm run build -- --watch", "copyfiles": "node ./scripts/copyFiles.js src/static/ejs dist/static && node ./scripts/copyFiles.js src/constants/errorMeta.json dist/constants && node ./scripts/copyFiles.js exclusions.txt dist", - "start": "node dist/index.js", + "start": "node --max-old-space-size=6144 dist/index.js", "cli": "node --max-old-space-size=6144 dist/cli.js", "test": "node --experimental-vm-modules ./node_modules/.bin/jest", "lint": "eslint . --report-unused-disable-directives --max-warnings 0",