vscode: ignore target_wasm

This commit is contained in:
Emil Ernerfeldt 2023-05-22 21:36:27 +02:00
parent 6a80e6fc74
commit a1d0e29e5e
1 changed files with 4 additions and 3 deletions

View File

@ -8,8 +8,9 @@
}
},
"files.exclude": {
"target/**": true,
"target_ra/**": true,
"target_wasm/**": true,
"target/**": true,
},
// Tell Rust Analyzer to use its own target directory, so we don't need to wait for it to finish wen we want to `cargo run`
"rust-analyzer.check.overrideCommand": [
@ -18,7 +19,7 @@
"--target-dir=target_ra",
"--workspace",
"--message-format=json",
"--all-targets"
"--all-targets",
],
"rust-analyzer.cargo.buildScripts.overrideCommand": [
"cargo",
@ -27,6 +28,6 @@
"--target-dir=target_ra",
"--workspace",
"--message-format=json",
"--all-targets"
"--all-targets",
],
}