Atom's JavaScript autocompletion in TypeScript -
today, i've been trying autocompletion on atom through autocomplete+
, ternjs
packages. however, don't know how autocompletion external libraries lodash.js
. i've found lodash-autocomplete
package works on .js
files.
is there workaround working in .ts
files?
this answered in official atom faq:
atom includes feature called "custom file types" can use adding entries
config.cson
this:core: customfiletypes: 'source.js': [ 'ts' ]
take note might lead undesired side-effects, e.g. duplication snippets/autocompletions. long-term fix, consider requesting feature author of package.
Comments
Post a Comment