Can I hide typescript autogenerated .js and .map.js files in atom? -


does know if there plugin/option hiding or grouping autogenerated files in atom?

the files want hidden/grouped typescript compiler auto generates (.js , .map.js files).

visual studio style grouping best, if possible

my typescript file file.ts

which generates file.js file.map.js

file.js interesting read once in while, in general autogenerated , shouldn't care it.

so letting file.ts virtual folder like

- file.ts   - file.js   - file.map.js 

would ideal solution.

plain hiding fine. (hiding .js files in general not solution, since typescript projects typically mix .js, .ts , .tsx files)

atom respects .gitignore , grey out files matching .gitignore place in root of project. should sufficient ignore generated files:

*.js *.jsx 

in addition, tsconfig.json can output files path. example:

{   "version": "1.6.2",   "compileroptions": {     "outdir": "build"     "sourcemap": true   },   "filesglob": [     "./src/**/*.ts",     "./src/**/*.tsx"   ] } 

this inform tsc , atom-typescript output typescript files located in src build.


Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -