Add ability to set wildcard into the reference path
Add ability to set wildcard into the reference path.
For example:
When I want to add all files from the subdirectory /path/to/files I must add files separately:
/// <reference path="../path/to/files/file1.js" />
/// <reference path="../path/to/files/file2.js" />
/// <reference path="../path/to/files/file3.js" />
...
It will be more usefull if I have ability to setup references through wildcard:
/// <reference path="../path/to/files/*.js" />
or more widely:
/// <reference path="../path/to/*/*" />
119
votes
1 comment
-
André Andersen
commented
I would love to see this feature implemented somehow - and would make JavaScript development a little bit easier.