You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 1, 2019. It is now read-only.
Typescript recently landed plugin support (microsoft/TypeScript#12231) and it allows for some interesting extensions, but it only seems to kick in when using the language service, not when running tsc from command line, and without having the ability to use the same plugins during development and build time, it's kind of useless.
How hard do you think it would be to support plugins in awesome-typescript-loader? A plugin is basically a module that exports a function that matches the following definition:
The create method has the ability to return a LanguageService with intercepted calls to things like getEmitOutput and getSemanticDiagnostics to add additional functionality.
Could awesome-typescript-loader take plugins into account when creating its LanguageService? I haven't dug into the internals of atl so I'm just looking for some guidance here.
The text was updated successfully, but these errors were encountered:
Typescript recently landed plugin support (microsoft/TypeScript#12231) and it allows for some interesting extensions, but it only seems to kick in when using the language service, not when running
tsc
from command line, and without having the ability to use the same plugins during development and build time, it's kind of useless.How hard do you think it would be to support plugins in
awesome-typescript-loader
? A plugin is basically a module that exports a function that matches the following definition:The
create
method has the ability to return aLanguageService
with intercepted calls to things likegetEmitOutput
andgetSemanticDiagnostics
to add additional functionality.Could
awesome-typescript-loader
take plugins into account when creating itsLanguageService
? I haven't dug into the internals of atl so I'm just looking for some guidance here.The text was updated successfully, but these errors were encountered: