Răsfoiți Sursa

refactor: add c_cpp_properties for node-gyp on mac

wupl 1 an în urmă
părinte
comite
edc718d6b5
1 a modificat fișierele cu 21 adăugiri și 0 ștergeri
  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
+}