This extension brings support for Meteor to Visual Studio Code. The goal is to create an extension with complete support specific to Meteor.
It's currently under development and the set of features is limited. See below for more details.
ext install vscode-meteor
For this extension to work you need to add a jsconfig.json
if you haven't already.
See the VS Code documentation for more information.
A very basic jsconfig.json
could be as follows:
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
},
"exclude": [
"node_modules",
"bower_components"
]
}
This extension provides typings for the whole Meteor API. It includes the typings from meteor-typings.
With typings you get auto complete and also information about parameters in function calls.
Some declarations are currently missing. Also inline documentation is currently not provided. Will be definitely completed.
I just started and have to figure out how to implement more features. So feature request and pull requests are welcome!
- Use typings instead of custom logic
- Mark as preview
- Added more Meteor functions for auto completion
- Added package icon
Very first basic version only providing intellisense for Meteor Core functionality.