File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 27
27
"scripts" : {
28
28
"vscode:prepublish" : " npm run build-base -- --minify" ,
29
29
"package" : " vsce package -o rust-analyzer.vsix" ,
30
- "build-base" : " esbuild ./src/main.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node --target=node14 " ,
30
+ "build-base" : " esbuild ./src/main.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node --target=node16 " ,
31
31
"build" : " npm run build-base -- --sourcemap" ,
32
32
"watch" : " npm run build-base -- --sourcemap --watch" ,
33
33
"lint" : " tsfmt --verify && eslint -c .eslintrc.js --ext ts ./src ./tests" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
3
"module" : " commonjs" ,
4
- "target" : " es2019 " ,
4
+ "target" : " es2021 " ,
5
5
"outDir" : " out" ,
6
6
"lib" : [
7
- " es2019 "
7
+ " es2021 "
8
8
],
9
9
"sourceMap" : true ,
10
10
"rootDir" : " ." ,
You can’t perform that action at this time.
0 commit comments