mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 20:42:04 +00:00
editor/code: Enable noPropertyAccessFromIndexSignature
ts option
This commit is contained in:
parent
72a3883a71
commit
f70845305f
6 changed files with 9 additions and 9 deletions
|
@ -147,8 +147,9 @@ async function getDebugConfiguration(
|
|||
debugConfig.name = `run ${path.basename(executable)}`;
|
||||
}
|
||||
|
||||
if (debugConfig.cwd) {
|
||||
debugConfig.cwd = simplifyPath(debugConfig.cwd);
|
||||
const cwd = debugConfig["cwd"];
|
||||
if (cwd) {
|
||||
debugConfig["cwd"] = simplifyPath(cwd);
|
||||
}
|
||||
|
||||
return debugConfig;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue