ialexivy / vscode-angular2-files

vscode extension generating angular files with angular cli
MIT License
61 stars 36 forks source link

angular-cli.json not fully supported #8

Closed ffarkhondeh closed 7 years ago

ffarkhondeh commented 7 years ago

It seems this plugin only supports the file extension configuration from my angular-cli.json. I checked the source code a bit and it seems that it always creates spec files and html files.

My angular-cli.json:

"defaults": {
    "styleExt": "scss",
    "prefixInterfaces": false,
    "inline": {
      "style": false,
      "template": true
    },
    "spec": {
      "class": false,
      "component": false,
      "directive": false,
      "module": false,
      "pipe": false,
      "service": false
    }
  }

Here I specify:

Please provide support for inline html templates and skipping spec files. Sadly I can't use this plugin if I still have to manually delete files, modify component meta data structure etc.