Last active
May 29, 2022 09:25
-
-
Save tangledbytes/6627cfc4b35c2acbbdd240bad5754379 to your computer and use it in GitHub Desktop.
n-api vscode settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"configurations": [ | |
{ | |
"name": "Linux", | |
"includePath": [ | |
"${workspaceFolder}/**", | |
"${workspaceFolder}/node_modules/node-addon-api", | |
"~/.nvm/versions/node/v14.16.0/include/node/**" | |
], | |
"defines": [], | |
"compilerPath": "/usr/bin/g++", | |
"cStandard": "c11", | |
"cppStandard": "c++17", | |
"intelliSenseMode": "clang-x64" | |
} | |
], | |
"version": 4 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"files.associations": { | |
"array": "cpp", | |
"atomic": "cpp", | |
"*.tcc": "cpp", | |
"cctype": "cpp", | |
"chrono": "cpp", | |
"clocale": "cpp", | |
"cmath": "cpp", | |
"cstdarg": "cpp", | |
"cstddef": "cpp", | |
"cstdint": "cpp", | |
"cstdio": "cpp", | |
"cstdlib": "cpp", | |
"cstring": "cpp", | |
"ctime": "cpp", | |
"cwchar": "cpp", | |
"cwctype": "cpp", | |
"deque": "cpp", | |
"unordered_map": "cpp", | |
"vector": "cpp", | |
"exception": "cpp", | |
"algorithm": "cpp", | |
"functional": "cpp", | |
"iterator": "cpp", | |
"memory": "cpp", | |
"memory_resource": "cpp", | |
"numeric": "cpp", | |
"optional": "cpp", | |
"random": "cpp", | |
"ratio": "cpp", | |
"string": "cpp", | |
"string_view": "cpp", | |
"system_error": "cpp", | |
"tuple": "cpp", | |
"type_traits": "cpp", | |
"utility": "cpp", | |
"fstream": "cpp", | |
"initializer_list": "cpp", | |
"iosfwd": "cpp", | |
"iostream": "cpp", | |
"istream": "cpp", | |
"limits": "cpp", | |
"new": "cpp", | |
"ostream": "cpp", | |
"sstream": "cpp", | |
"stdexcept": "cpp", | |
"streambuf": "cpp", | |
"thread": "cpp", | |
"typeinfo": "cpp", | |
"bit": "cpp" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment