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 11{
22 "name" : " typescript-assistant" ,
3- "version" : " 0.67.0 " ,
3+ "version" : " 0.67.1 " ,
44 "description" : " Combines and integrates professional Typescript tools into your project" ,
55 "main" : " dist/index.js" ,
66 "bin" : {
Original file line number Diff line number Diff line change @@ -85,8 +85,10 @@ export function createLinter(dependencies: {
8585 }
8686
8787 function startProcess ( ) {
88+ let env = Object . assign ( { "NODE_OPTIONS" : "--max-old-space-size=8192" } , process . env ) ;
8889 lintProcess = fork ( `${ __dirname } /linter-process-eslint` , [ ] , {
8990 execArgv : process . execArgv . filter ( ( arg ) => ! arg . includes ( "inspect" ) ) ,
91+ env
9092 } ) ;
9193 lintProcess . on ( "close" , ( code : number ) => {
9294 if ( code !== 0 && code !== null ) {
You can’t perform that action at this time.
0 commit comments