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

The function `readConfigFile` in file `src/instance.ts` pass the argument `context` as both `basePath` and `configFileName` parameters to `parseJsonConfigFileContent`. https://github.com/s-panferov/awesome-typescript-loader/blob/ed5d1a3ac9653b6dd21e22cfd51e99e38c62c50a/src/instance.ts#L322 The constructor of class PathPlugin use `process.cwd()` as context as fallback...

I have a rather bizarre issue where I'm getting errors when building with webpack. But I'm not seeing any errors when I run `tsc`. Not sure what's up with this...

In this library [file](https://github.com/quantumjs/solar-popup/blob/master/src/index.ts#L1) I am Reexporting a `type` from vanilla-typescript so that the end user of solar-popup doesn't need to install vanilla-typescript. However in the build folder I am...

With 3.5.0 my project builds in ~1min, but when I update loader to 4.0.1 it builds extremely slow, I have to wait ~6 mins v4.0.1: ![image](https://user-images.githubusercontent.com/9821633/38026176-c9772440-3293-11e8-9a59-bd9032a2528a.png) v3.5.0: ![image](https://user-images.githubusercontent.com/9821633/38026271-30e0f6a6-3294-11e8-8d08-820bea590319.png) Angular 5.2.9...

Hi, I wonder if anyone can help ? I had a loader set up, its a mixed project of ts and js files, and I am using the allowJS tsconfig....

Hi, I am trying to import a `.ts` file from a `.tsx` file but I get the following error: ``` TS2306: File 'C:/development/article.ts' is not a module. ``` `article.ts` ```...

I'm trying to build a fairly simple project using Webpack and TypeScript. My file structure: * /scripts/main.tsx * /scripts/utils/JSX.ts main.tsx includes the following line: `import JSX from "./utils/JSX";` When I...

when running _npm run build_ from a symlinked folder, subject error comes up. symlink is created with [Junction](https://technet.microsoft.com/en-us/sysinternals/bb896768.aspx?wt.svl=leftnav)

It seems that currently the loader will watch all files in the dependency graph of the `tsconfig.json`, but I would expect it to only watch files in the dependency graph...