Skip to content
This repository was archived by the owner on Mar 12, 2023. It is now read-only.

Commit 739094e

Browse files
committed
attempt 4?
1 parent 20e8f99 commit 739094e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,11 +190,11 @@
190190
},
191191
"scripts": {
192192
"vscode:prepublish": "npm run compile",
193-
"compile": "node --max-old-space-size=4096 node_modules/webpack/bin/webpack --mode production",
193+
"compile": "node --max-old-space-size=1024 node_modules/webpack/bin/webpack --mode production",
194194
"watch": "node node_modules/webpack/bin/webpack --mode development --watch",
195195
"pretest": "npm run compile && npm run ts:compile",
196196
"ts:compile": "tsc -p ./",
197-
"test": "node --max-old-space-size=4096 ./out/test/runTest.js",
197+
"test": "node --max-old-space-size=1024 ./out/test/runTest.js",
198198
"lint": "tslint -p ./"
199199
},
200200
"devDependencies": {

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const config = {
3333
new (require('fork-ts-checker-webpack-plugin'))({
3434
async: false,
3535
useTypescriptIncrementalApi: true,
36-
memoryLimit: 2048,
36+
memoryLimit: 768,
3737
checkSyntacticErrors: true,
3838
tsconfig: tsconfig
3939
})

0 commit comments

Comments
 (0)