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

Getting the following 2 errors: ``` ERROR in ./client/components/Protected.Route.tsx Module build failed: Error: Final loader (./node_modules/awesome-typescript-loader/dist/entry.js) didn't return a Buffer or String ERROR in ./client/graphql/queries/currentUser.ts Module build failed: Error: Final...

I'm get a error: ERROR in ./ClientApp/src/utils/utils.ts Module build failed: Error: Final loader (./node_modules/awesome-typescript-loader/dist/entry.js) didn't return a Buffer or String utils.ts: `export function removeRouteParams() {window.history.replaceState({}, document.title, '/');}` If i'm remove...

I have the following project structure: ``` app --core ----layout ------layout.component.ts/html/scss ------layout.component.spec.ts testing --router-stubs.ts ``` I have the following tsconfig file: ``` { "compilerOptions": { "baseUrl": ".", "target": "es5", "module":...

When using the loader with Webpack 4 I get this error message: ```DeprecationWarning: Tapable.plugin is deprecated. Use new API on `.hooks` instead```. It works, but always show deprecation message. The...

Test repo: https://github.com/thejameskyle/test-awesome-ts-loader If I have a file like this: ```ts export interface a {} ``` And I run with these options: ```js { test: /\.tsx?$/, loader: 'awesome-typescript-loader', options: {...

investigate

### Expected Behaviour HMR should behave consistently with plain-old-js HMR (no `awesome-typescript-loader`) ### Actual Behaviour With HMR enabled and `awesome-typescript-loader` used, HMR fails to replace imported values from hot-replaced modules...

Using webpack 3 here with React, I have also set `bail: true` in `webpack.config.dev` but the compilation goes on in case of typing errors. Is there a way to force...

Hello, I can't seem to get this to compile correctly in webpack even though my editor (VSCode) resolves the file correctly. ```js // ./src/server/api/users/create.ts import {User} from 'models/User'; ... ```...

```ts const compiler = webpack(config) compiler.run(function(err, stats) { // no error when loader fails typecheck. }) ```

Iterate over the allDiagnostics and display error messages. allDiagnostics.map(function(err) { console.error(colors.red(err.messageText)); });