Vaughan Rouesnel

Results 215 comments of Vaughan Rouesnel
trafficstars

Would love to see this implemented!

This stopped working for me recently. I'm not sure what changed. It should work just like TypeScript. ``` { baseUrl: 'src', paths: {'#src/*': './src/*'} } ``` When I use `transformSync`...

@ematipico Use @babel/preset-typescript and this plugin https://github.com/leonardfactory/babel-plugin-transform-typescript-metadata

Here is what my babel preset looks like: NOTE: I had to patch parameter decorator to work with React@17. ```js module.exports = api => { return { //////////////////////////////////////////////////////////////////////////// presets: [...

@alextreppass `.git/info/exclude`. See https://help.github.com/articles/ignoring-files/#explicit-repository-excludes. @ArtemGovorov > some of wallaby core logic (as well as various integrations, like Webpack/Jest) assume that wallaby config is located in the project's root. But WebStorm...

> @ArtemGovorov you may create wallaby.core-tests.js (or whatever name you like) file with the following content... This is not feasible for me. I have 100s of packages in my monorepo...

Does Smart Start delay the instrumentation? It takes several minutes to find and instrument all the files in my monorepo. And even if it only has to do this once...

It's too complicated and would take some time to make a public repro. Do you have a sample of a very large monorepo where it is fast?

Cool! Some feedback from my desired workflow: I usually work with three side-by-side editors in my IDE. If the tab can dock in one of the editor tab groups that...