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

```json { "compilerOptions": { "jsx": "react", "outDir": "../../dist/web", "paths": { "web/*": ["../web/*"], "shared/*": ["../shared/*"] } }, "extends": "../../tsconfig.base" } ``` with ATL I see errors about files that must be...

My app compiles, but if add it to node_modules, I can't use `import * as styles from './styles.scss';` (need to compile together) tsconfig: ```{ "compilerOptions": { "noImplicitAny": false, "outDir": "./dist/",...

Webpack 4 in beta now, so can you update plugin to support it?

enhancement
help wanted

In some cases, and I can't figure out why, when we have a syntax error where Typescript cannot compile the code, the loader will output something like the stack trace...

awesome-typescript-loader: 5.2.1 webpack: 4.29.5 ts: 3.3.3333 webpack config: `plugins: [ new webpack.NamedChunksPlugin(), new CleanWebpackPlugin(['dist'], { root: path.resolve(__dirname, '../'), }), new webpack.DefinePlugin({ 'process.env.DEPLOY_ENV': JSON.stringify(DEPLOY_ENV), 'process.env.DATE_VERSION': JSON.stringify(DATE_VERSION), }), new webpack.ProvidePlugin({ React: 'react',...

I have the error when compile single file component *.vue, contains {{ TS_CODE_HERE }} ``` ERROR in ./node_modules/awesome-typescript-loader/dist/entry.js!./node_modules/vue-loader/lib/selector.js?type=script&index=0!./src/components/HelloDecorator.vue Module build failed: Error: Final loader didn't return a Buffer or String...

I have an issue where awesome-typescript-loader will not print out the TS errors when running in Travis CI: https://travis-ci.org/DestinyItemManager/DIM/builds/526111148?utm_source=github_status&utm_medium=notification Instead, it prints: ``` Error: Tap function (tapPromise) did not return...

Although there are instructions for `Webpack`, like how to change the `webpack.config.js` file, but my question is what can we do for `Metro`, like how should we edit the `metro.config.js`...

With `"awesome-typescript-loader": "~3.1.3"` everything is working nicely. After upgrading to version `3.2.x` i got following error: >ERROR in [at-loader] ./app/components/navigation/navigation.component.ts:11:25 >TS2307: Cannot find module 'config/global'. in this repository https://github.com/kukjevov/ng-universal-demo/tree/mine you...