Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"ecmaVersion": 2022,
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Worth bumping to ES15 with 2024? Object.hasOwn and the array immutability changes are handy from ES14 as well as Promise.withResolvers from ES15.

ES16 should be next month so cool to rev with that.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will need to double check, as vscode/electron tends to lag a bit, compared to the browsers...

Copy link
Copy Markdown
Collaborator Author

@GordonSmith GordonSmith May 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Opened new ticket to check: #43

"sourceType": "module"
},
"plugins": [
Expand Down
5 changes: 4 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
"--disable-extensions",
"--extensionDevelopmentPath=${workspaceFolder}",
"${workspaceRoot}/tests/grammar/integration"
]
}
]
Expand Down
25 changes: 25 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"label": "watch",
"script": "watch",
"problemMatcher": [],
"presentation": {
"group": "build"
}
},
{
"label": "build",
"dependsOn": [
"watch"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}
Loading
Loading