Mitchell Nemitz

Results 10 comments of Mitchell Nemitz

I solved this issue by abandoning this plugin and instead installing `@babel/preset-typescript` and `babel-plugin-module-resolver` with this bit of config in my `.babelrc`: ``` { "presets": [ ... "@babel/preset-typescript" ], "plugins":...

@benpolinsky if you add `"noEmit": true` to your `tsconfig.json` you can just run `tsc` in parallel with your build to find any type errors. The point of using babel instead...

@benpolinsky Hrm, I actually agree. I'm just so used to solving my problems by piling on tooling and configuration that I almost forget what Parcel is supposed to be. I'm...

For what it's worth, you could just go with my approach combined in an npm script like so until I get an alternative plugin together: https://github.com/fathyb/parcel-plugin-typescript/issues/59#issuecomment-429499815

@QuantumInformation can you be more specific as to what error you're experiencing? Is it that your Typescript isn't compiling with this plugin? If so, try one of the solutions above...

If you're using Typescript, you're beyond the zero-config functionality of Parcel. It has out of the box support for JS / CSS / HTML and a few other things, but...

`alias` in the module resolver context is analogous to `paths` in `tsconfig.json` -- i.e. a list of path mapping entries from module names -> locations relative to your `baseUrl`. In...

PHPStorm and other big-name IDEs use `/** @var NextLineVariableClassName */` to help with language intelligence, it would be nice if I could hyperclick through that annotation, but I understand it...

I wouldn't rule out either OS having a sketchy `stat` implementation, but it does seem that `stat` functions just fine on both systems outside of the Unison sync context for...

On macOS, the config I selected on first run seems to have been saved to `~/Library/Application Support/act/actrc` which I was able to identify from perusing the base directories here: https://github.com/adrg/xdg?tab=readme-ov-file#xdg-base-directory...