HookyQR / VSCodeMinify

Add minify function to VSCode 0.10+
53 stars 20 forks source link

Feature Request Extensions #65

Open andyg2 opened 2 years ago

andyg2 commented 2 years ago

Would it be possible to determine what files are deemed to be html etc from the user files.associations key of settings.json For example adding the mustache for an html template like so?

  "files.associations": {
    "*.mustache": "html"
  },

Or alternatively to add interface or settings.js options for alternative extensions like so?

  "minify.html": {
    ...
    ...
    "htmlExtensions": [
      "html, 
      "htm",
      "mustache"
    ]
  }