Reznichenko Vladimir
Reznichenko Vladimir
May be some configuration option can be introduced? `cause we have lots of internal packages in our organization, written in pure typescript, that are consumed and compiled by some end-projects,...
@wombat86 FYI, my current workaround is pretty straightforward: ```javascript let config = Encore.getWebpackConfig(); let tsLoader = config.module.rules.filter(rule => { return Array.isArray(rule.use) && rule.use.some(use => use.loader === 'ts-loader') })[0]; delete tsLoader.exclude;...
@Lyrkan > Maybe we could add a second parameter to Encore.enableTypeScriptLoader() Oh, would be great! ) > Note that in the meantime you can use Encore.configureLoaderRule() as a cleaner workaround...
why not to just add an interface, lets say "PaginatedResultInterface", that i can typehint my method's return type with it (in docblocks in php5 or eplicitly in upcoming php7). i...
i can do it in a pr, should i?
but why not to add it just for pureness, so people will be able to typehint their methods return types