You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
Thanks for providing this great extension for atom, I really love using it by far.
Just have a feature request, would it be possible to support module autocomplete for JSPM?
Thanks
The text was updated successfully, but these errors were encountered:
thanks for replying, I was reading through your code and found that you
have supported webpack by specifying a lookup logic. I would assume to
support JSPM it is similar to it. All jspm installed packages are also
recorded in the package.json file, with a prefix starting with jspm by
default. The actual packages are stored in jspm package folder where the
lookup logic should probably happen.
{
"name": "myapp",
"version": "1.0.0",
"description": "",
"scripts": {
"test": ""
},
"author": "XXX",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^5.0.0",
"eslint": "^2.4.0",
"eslint-plugin-react": "^4.2.3",
"jspm": "^0.16.31",
"watch": "^0.17.1"
},
"jspm": {
"directories": {
"baseURL": "app"
},
"dependencies": {
"classnames": "npm:classnames@^2.2.3",
"flux": "npm:flux@^2.1.1",
"jquery": "npm:jquery@^2.2.2",
"keymirror": "npm:keymirror@^0.1.1",
"object-assign": "npm:object-assign@^4.0.1",
"react": "npm:react@^0.14.7",
"react-dom": "npm:react-dom@^0.14.7"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
}
}
Hi
Thanks for providing this great extension for atom, I really love using it by far.
Just have a feature request, would it be possible to support module autocomplete for JSPM?
Thanks
The text was updated successfully, but these errors were encountered: