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

That is all I can say. Twice as slow. Specifically module building progress is laggy. Not as fast as smooth as previously... from 0/1800 to 1800/1800 of my modules. Others...

I tried every combination I can think of any awesome typescript loader will not respect the `exclude` property in tsconfig.json ``` "exclude": [ "compiled", ], ``` ``` "exclude": [ "compiled/*",...

Errors that match the criteria for noUnusedParamters and noUnusedLocals compiler options are not reported. Discovered using Typescript 3. Tried setting them explicitly in plugin configuration section and still no luck.

## Bug Report **Current Behavior** exported function in DictionaryFormHelpers.ts : `export function getEmptyStateChange(): IDictionaryFormState { console.log('strange things'); return {} as IDictionaryFormState; };` transpile in to: `function Wl() { return console.log("strange...

at-loader just leaves me with the following ambiguous error message: ``` [at-loader] Checking started in a separate process... [at-loader] Checking finished with 5 errors ```

bug
investigate

Hi, I'm trying to update my npm dependencies, but with the latest versions of Babel and ATS I'm getting an error: ``` ERROR in ./src/Client/ts/IsometricCameraKeyboardMoveInput.ts Module build failed (from ./node_modules/awesome-typescript-loader/dist/entry.js):...

# Input: ### src/index.ts ```typescript export {SomeType} from './some.types'; ``` ### src/some.types.ts ```typescript export type SomeType = number; ``` ### webpack.config.js ```javascript module.exports = { entry: './src/index.ts', output: { filename:...

Hi, I got an error when I try to run webpack and awesome-typescript-loader, to package a typescript serverless function, with a dependency package named `'imagemin-jpegtran'`. - _Critical dependency: require function...

#### package.json ```json "devDependencies": { "@babel/core": "^7.0.0-beta.42", "@babel/plugin-proposal-optional-chaining": "^7.0.0-beta.42", "awesome-typescript-loader": "^4.0.1", "webpack": "^4.2.0", "webpack-cli": "^2.0.13", "babel-loader": "^8.0.0-beta.2", "typescript": "^2.7.2" } ``` #### webpack.config.js ```js module.exports = { mode: 'production', entry:...

`webpack 2 ` use `import('xx').then()` to split code. But use `import()` in ts is invalid. any examples to show how to use `import()` with `webpack 2` and ts ?

docs