-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compilation of Js Files #4826
Compilation of Js Files #4826
Conversation
…re is filename tag
…g js files compilation
…pecifying .ts file
…sent and tsconfig doesnt specify any filenames
…oesnt contain any name
…fig file specifying them
…fig file doesnt specifying any names
…rectory only if specified in the options
- Command line now takes --jsExtension multiple times or comma separated list of extensions - tsconfig accepts array of extension strings
c52c6e8
to
40fb035
Compare
40fb035
to
acf7de7
Compare
* @param s | ||
* @param existingValue | ||
*/ | ||
function parseMultiValueStringArray(s: string, existingValue: string[]) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the difference between this and the built-in split
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I could use split but then I would need to iterate over result again to make sure the strings are non empty and are correct.
…he declaration file in program has error
This is now handled in #5345 |
Compiler treats javascript files like declaration files and does not emit any output corresponding to them. Here are the list of work this PR supports: