increase memory size for valid layers check (#12206)

This commit is contained in:
Anthony Dresser
2020-09-10 10:18:35 -07:00
committed by GitHub
parent adefa213e2
commit d01dc5a5c7

View File

@@ -41,7 +41,7 @@
"strict-vscode-watch": "node --max_old_space_size=4095 node_modules/typescript/bin/tsc -p src/tsconfig.vscode.json --watch",
"strict-initialization-watch": "tsc --watch -p src/tsconfig.json --noEmit --strictPropertyInitialization",
"tsec-compile-check": "node_modules/tsec/bin/tsec -p src/tsconfig.json --noEmit",
"valid-layers-check": "node build/lib/layersChecker.js",
"valid-layers-check": "node --max_old_space_size=4095 build/lib/layersChecker.js",
"strict-function-types-watch": "tsc --watch -p src/tsconfig.json --noEmit --strictFunctionTypes",
"update-distro": "node build/npm/update-distro.js",
"web": "node resources/web/code-web.js",