Skip to content

Commit 482d7be

Browse files
committed
chore: bump versions and tweak build environment
Opinionated quality of life changes Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
1 parent 80c21d1 commit 482d7be

File tree

6 files changed

+3467
-338
lines changed

6 files changed

+3467
-338
lines changed

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"root": true,
33
"parser": "@typescript-eslint/parser",
44
"parserOptions": {
5-
"ecmaVersion": 6,
5+
"ecmaVersion": 2022,
66
"sourceType": "module"
77
},
88
"plugins": [

.vscode/launch.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@
99
"name": "Extension",
1010
"type": "extensionHost",
1111
"request": "launch",
12+
"runtimeExecutable": "${execPath}",
1213
"args": [
13-
"--extensionDevelopmentPath=${workspaceFolder}"
14+
"--disable-extensions",
15+
"--extensionDevelopmentPath=${workspaceFolder}",
16+
"${workspaceRoot}/tests/grammar/integration"
1417
]
1518
}
1619
]

.vscode/tasks.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "npm",
6+
"label": "watch",
7+
"script": "watch",
8+
"problemMatcher": [],
9+
"presentation": {
10+
"group": "build"
11+
}
12+
},
13+
{
14+
"label": "build",
15+
"dependsOn": [
16+
"watch"
17+
],
18+
"group": {
19+
"kind": "build",
20+
"isDefault": true
21+
},
22+
"problemMatcher": []
23+
}
24+
]
25+
}

0 commit comments

Comments
 (0)