Update ignores
This commit is contained in:
parent
a4baa91894
commit
35f43bf533
2 changed files with 8 additions and 1 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
|
@ -3,3 +3,9 @@
|
||||||
|
|
||||||
# Rust build folder
|
# Rust build folder
|
||||||
target
|
target
|
||||||
|
|
||||||
|
# Node dependencies
|
||||||
|
node_modules
|
||||||
|
|
||||||
|
# WebPack build output
|
||||||
|
dist
|
||||||
|
|
|
||||||
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
|
|
@ -1,8 +1,9 @@
|
||||||
{
|
{
|
||||||
"files.exclude": {
|
"files.exclude": {
|
||||||
"**/snapshots": true, // cargo-insta outputs
|
"**/snapshots": true, // cargo-insta outputs
|
||||||
|
"**/node_modules": true, // node.js dependencies
|
||||||
|
"**/dist": true, // webpack build directory
|
||||||
"pkg": true, // wasm-pack build directory
|
"pkg": true, // wasm-pack build directory
|
||||||
"target": true, // rust build directory
|
"target": true, // rust build directory
|
||||||
"**/node_modules": true, // node.js dependencies
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue