We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f01256 commit 6c37e4fCopy full SHA for 6c37e4f
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "typescript-assistant",
3
- "version": "0.67.0",
+ "version": "0.67.1",
4
"description": "Combines and integrates professional Typescript tools into your project",
5
"main": "dist/index.js",
6
"bin": {
src/code-style/linter.ts
@@ -85,8 +85,10 @@ export function createLinter(dependencies: {
85
}
86
87
function startProcess() {
88
+ let env = Object.assign({ "NODE_OPTIONS" : "--max-old-space-size=8192" }, process.env );
89
lintProcess = fork(`${__dirname}/linter-process-eslint`, [], {
90
execArgv: process.execArgv.filter((arg) => !arg.includes("inspect")),
91
+ env
92
});
93
lintProcess.on("close", (code: number) => {
94
if (code !== 0 && code !== null) {
0 commit comments