mirror of https://github.com/mongodb/mongo
SERVER-68594 Added better javascript code hinting
This commit is contained in:
parent
1863709add
commit
8e08ea0547
|
|
@ -175,9 +175,6 @@ CMakeLists.txt
|
|||
.vs/
|
||||
/x64/
|
||||
|
||||
# VSCode JavaScript config files
|
||||
**/jsconfig.json
|
||||
|
||||
# Windows MSI builder artifacts
|
||||
*.msi
|
||||
*.wixobj
|
||||
|
|
|
|||
|
|
@ -19,7 +19,13 @@
|
|||
"eslint.validate": [
|
||||
"javascript"
|
||||
],
|
||||
"files.associations": {
|
||||
"SConstruct": "python",
|
||||
"SConscript": "python",
|
||||
"*.idl": "yaml",
|
||||
},
|
||||
"files.insertFinalNewline": true,
|
||||
"js/ts.implicitProjectConfig.target": "ES2020",
|
||||
"python.autoComplete.extraPaths": [
|
||||
"/opt/mongodbtoolchain/v4/share/gcc-11.3.0/python",
|
||||
"src/third_party/scons-3.1.2/scons-local-3.1.2"
|
||||
|
|
@ -46,11 +52,6 @@
|
|||
"editor.defaultFormatter": "xaver.clang-format",
|
||||
"editor.formatOnSave": true,
|
||||
},
|
||||
"files.associations": {
|
||||
"SConstruct": "python",
|
||||
"SConscript": "python",
|
||||
"*.idl": "yaml",
|
||||
},
|
||||
},
|
||||
"extensions": {
|
||||
"recommendations": [
|
||||
|
|
|
|||
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"disableSizeLimit": true,
|
||||
"target": "ES2020"
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"src/third_party"
|
||||
]
|
||||
}
|
||||
Loading…
Reference in New Issue