diff options
author | 2021-10-24 06:18:42 -0700 | |
---|---|---|
committer | 2021-10-24 06:18:42 -0700 | |
commit | 449c8b5f362835d75e5f98ccf89f99df5d7a2e88 (patch) | |
tree | 8fefde6f3d2bb6d376f588b9d4c1fd837102d641 /.vscode/settings.json | |
parent | 1f7af3754d3649a82145da4c92b76a10ab1b2468 (diff) | |
download | bun-449c8b5f362835d75e5f98ccf89f99df5d7a2e88.tar.gz bun-449c8b5f362835d75e5f98ccf89f99df5d7a2e88.tar.zst bun-449c8b5f362835d75e5f98ccf89f99df5d7a2e88.zip |
[internal] Tweak build system to better support unit tests in Zig
Diffstat (limited to '.vscode/settings.json')
-rw-r--r-- | .vscode/settings.json | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index 117340f28..c0970369d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,15 +3,16 @@ "search.quickOpen.includeSymbols": false, "search.seedWithNearestWord": true, "search.smartCase": true, - "search.exclude": { - "src/javascript/jsc/WebKit/**/*": true - }, + "search.exclude": {}, "search.followSymlinks": false, "search.useIgnoreFiles": true, "zig.buildOnSave": false, "[zig]": { "editor.defaultFormatter": "tiehuis.zig" }, + "lldb.verboseLogging": true, + "zig.beforeDebugCmd": "make build-unit ${file} ${filter} ${bin}", + "zig.testCmd": "make test ${file} ${filter} ${bin}", "files.exclude": { "**/.git": true, "**/.svn": true, @@ -19,8 +20,20 @@ "**/CVS": true, "**/.DS_Store": true, "**/Thumbs.db": true, + "**/*.xcworkspacedata": true, + "**/*.xcscheme": true, + "**/*.pem": true, + "**/*.xcodeproj": true, + "integration/snapshots": true, - "integration/snapshots-no-hmr": true + "integration/snapshots-no-hmr": true, + "src/javascript/jsc/WebKit": true, + "src/deps/libarchive": true, + "src/deps/mimalloc": true, + "src/deps/s2n-tls": true, + "src/deps/openssl": true, + "src/deps/zlib": true, + "integration/snippets/package-json-exports/_node_modules_copy": true }, "C_Cpp.files.exclude": { "**/.vscode": true, |