David Graham

Results 22 comments of David Graham

@mistyharsh Make sure you include the mime: mime: { 'text/x-typescript': ['ts'] },

What exactly does the `cacheIdentifier` do? The documentation isn't clear.

Yeah, the quick fix is (in `src/index.js` of this plugin): ```js const { ExternalsPlugin } = require('webpack'); // .... if (compiler.options.externals) { new ExternalsPlugin('module', compiler.options.externals).apply(childCompiler); } ```

@lobo-tuerto Thanks for the heads up on the work-around. However, this breaks Jest coverage on Vue-cli 3 and pug right out of the box (if you add a component with...

@peterp gave me a clue that it was not using the babel.config.js file. So I ended up putting together this hacky plugin for Webpack. Assumes you also have a `.babelrc`...

Hey guys, I'm about to do a big rewrite (in 2 weeks or less) and I'll tackle the latest in production setup as well! Hang tight!

Ah yeah, that's a flexibility problem. It wants your config at the workspace root and also wants src at `[workspace root]/src`. This is mentioned in the README. I'm looking to...

@dkulchenko If you want a quick hack for the meantime, search for your `.vscode/extensions/prograhammer...` folder and open up `server/server.js`. If in latest version (v1.4.2), modify the line #518 (it's inside...

@dkulchenko And look at line #532 to hardcode a different location for `tsconfig.json`. Sorry for the inconvenience. Flexibility coming in version 2. Stay tuned.

That's a great recommendation @pedromazala! Plus it would help reduce chances of confliction with people's existing database tables. Were you wanting to do a PR (be careful if you were...