Skip to content
Open
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
12 changes: 7 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
"jest.autoRun": "off",
"jest.nodeEnv": {
"LANG": "en-US",
"TZ": "UTC"
"TZ": "UTC",
"NODE_OPTIONS": "--no-experimental-strip-types"
},

// These custom rules are read in extensions/ql-vscode/.markdownlint-cli2.cjs
Expand Down Expand Up @@ -79,6 +80,7 @@
"env": {
"LANG": "en-US",
"TZ": "UTC",
"NODE_OPTIONS": "--no-experimental-strip-types",

// Uncomment to set a custom path to a CodeQL checkout.
// "TEST_CODEQL_PATH": "/absolute/path/to/checkout/of/codeql",
Expand All @@ -88,7 +90,7 @@
// "CLI_PATH": "/absolute/path/to/custom/codeql",

// Uncomment to debug integration tests
"VSCODE_WAIT_FOR_DEBUGGER": "true",
"VSCODE_WAIT_FOR_DEBUGGER": "true"
}
},
"terminal.integrated.env.linux": {
Expand All @@ -105,10 +107,10 @@
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"editor.formatOnSave": true
}
}
2 changes: 1 addition & 1 deletion extensions/ql-vscode/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v22.17.0
v22.19.0
10 changes: 5 additions & 5 deletions extensions/ql-vscode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions extensions/ql-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"engines": {
"vscode": "^1.90.0",
"node": "^22.17.0",
"node": "^22.19.0",
"npm": ">=7.20.6"
},
"categories": [
Expand Down Expand Up @@ -1976,13 +1976,13 @@
"build": "gulp",
"watch": "gulp watch",
"test": "npm-run-all test:*",
"test:unit": "cross-env TZ=UTC LANG=en-US jest --projects test/unit-tests",
"test:view": "jest --projects src/view",
"test:unit": "cross-env TZ=UTC LANG=en-US NODE_OPTIONS=--no-experimental-strip-types jest --projects test/unit-tests",
"test:view": "cross-env NODE_OPTIONS=--no-experimental-strip-types jest --projects src/view",
"test:vscode-integration": "npm-run-all test:vscode-integration:*",
"test:vscode-integration:activated-extension": "jest --projects test/vscode-tests/activated-extension",
"test:vscode-integration:no-workspace": "jest --projects test/vscode-tests/no-workspace",
"test:vscode-integration:minimal-workspace": "jest --projects test/vscode-tests/minimal-workspace",
"test:cli-integration": "jest --projects test/vscode-tests/cli-integration --verbose",
"test:vscode-integration:activated-extension": "cross-env NODE_OPTIONS=--no-experimental-strip-types jest --projects test/vscode-tests/activated-extension",
"test:vscode-integration:no-workspace": "cross-env NODE_OPTIONS=--no-experimental-strip-types jest --projects test/vscode-tests/no-workspace",
"test:vscode-integration:minimal-workspace": "cross-env NODE_OPTIONS=--no-experimental-strip-types jest --projects test/vscode-tests/minimal-workspace",
"test:cli-integration": "cross-env NODE_OPTIONS=--no-experimental-strip-types jest --projects test/vscode-tests/cli-integration --verbose",
"clean-test-dir": "find . -type d -name .vscode-test -exec rm -r {} +",
"update-vscode": "node ./node_modules/vscode/bin/install",
"format": "prettier --write **/*.{ts,tsx} && eslint . --fix",
Expand Down Expand Up @@ -2074,7 +2074,7 @@
"@types/gulp": "^4.0.9",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.6",
"@types/node": "22.17.*",
"@types/node": "22.18.*",
"@types/proper-lockfile": "^4.1.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
Expand Down