awesome-typescript-loader icon indicating copy to clipboard operation
awesome-typescript-loader copied to clipboard

Awesome TypeScript loader for webpack

Results 100 awesome-typescript-loader issues
Sort by recently updated
recently updated
newest added

[pnpm](https://pnpm.js.org) is an alternative to npm that does not adhere to a flat node_modules structure. It instead organizes dependencies as a tree, only allowing files to require modules it explicitly...

This produces much better error output for the versions of TypeScript that support it.

### Minimal working example ```Javascript // index.ts import * as EventEmitter from "events"; console.log(EventEmitter); // package.json { "name": "mwe", "version": "1.0.0", "description": "Minimal working example for \"events\" bug in awesome-typescript-loader...

Hi I'm trying to use babel but even if I install it into my directory I keep receiveing: ``` Babel compiler cannot be found, please add it to your package.json...

TypeScript 3.4 has [landed](https://github.com/Microsoft/TypeScript/releases/tag/v3.4.1), and it comes with an [`--incremental` compiler option](https://devblogs.microsoft.com/typescript/announcing-typescript-3-4/#faster-subsequent-builds-with-the---incremental-flag) that creates a compilation cache file to speed up successive builds of the same code. I'm opening this...

It's been a while since this issue was detected and the PR was fired. Just wanted to pay attention on this. Using `resolveJsonModule` is not possible with ATL, because it...

I'm running webpack with awesome-typescript-loader, and I get the error saying that Accessors are only available with es5. The thing is that in my tsconfig.json it already says target is...

Hi, npm install is breaking since the dependency types/chai 4.2.0 only compiles with typescript versions > 3.0.0 Would it be possible to update the typescript version in devDependencies to >...

There was a change in the behavior of const enum compilation between v0.16.2 and v0.18.0. Before upgrading my const enum values were replaced with the actual value. Now they keep...

We have a monorepo when one of the packages is compiled with webpack, but references other package from the monorepo. We are using project references (new in TS 3) to...