Ver Fonte

refactor: add c_cpp_properties for node-gyp on mac

wupl há 1 ano atrás
pai
commit
edc718d6b5
1 ficheiros alterados com 21 adições e 0 exclusões
  1. 21 0
      .vscode/c_cpp_properties.json

+ 21 - 0
.vscode/c_cpp_properties.json

@@ -0,0 +1,21 @@
+{
+    "configurations": [
+        {
+            "name": "Mac",
+            "includePath": [
+                "${workspaceFolder}/**",
+                "/Users/wupl/.nvm/versions/node/v18.15.0",
+                "/Users/wupl/.nvm/versions/node/v18.15.0/include/node"
+            ],
+            "defines": [],
+            "macFrameworkPath": [
+                "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
+            ],
+            "compilerPath": "/usr/bin/clang",
+            "cStandard": "c17",
+            "cppStandard": "c++17",
+            "intelliSenseMode": "macos-clang-arm64"
+        }
+    ],
+    "version": 4
+}