File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " typescript-assistant" ,
3
- "version" : " 0.67.0 " ,
3
+ "version" : " 0.67.1 " ,
4
4
"description" : " Combines and integrates professional Typescript tools into your project" ,
5
5
"main" : " dist/index.js" ,
6
6
"bin" : {
Original file line number Diff line number Diff line change @@ -85,8 +85,10 @@ export function createLinter(dependencies: {
85
85
}
86
86
87
87
function startProcess ( ) {
88
+ let env = Object . assign ( { "NODE_OPTIONS" : "--max-old-space-size=8192" } , process . env ) ;
88
89
lintProcess = fork ( `${ __dirname } /linter-process-eslint` , [ ] , {
89
90
execArgv : process . execArgv . filter ( ( arg ) => ! arg . includes ( "inspect" ) ) ,
91
+ env
90
92
} ) ;
91
93
lintProcess . on ( "close" , ( code : number ) => {
92
94
if ( code !== 0 && code !== null ) {
You can’t perform that action at this time.
0 commit comments