Skip to content

Commit a090cc0

Browse files
authored
Allow Node.js v19 for local development (#645)
1 parent e465719 commit a090cc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nodejsWorker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const logPrefix = 'LanguageWorkerConsoleLog';
55
const errorPrefix = logPrefix + '[error] ';
66
const warnPrefix = logPrefix + '[warn] ';
77
const supportedVersions: string[] = ['v14', 'v16', 'v18'];
8-
const devOnlyVersions: string[] = ['v15', 'v17'];
8+
const devOnlyVersions: string[] = ['v15', 'v17', 'v19'];
99
let worker;
1010

1111
// Try validating node version

0 commit comments

Comments
 (0)