awesome-typescript-loader
awesome-typescript-loader copied to clipboard
Awesome TypeScript loader for webpack
Hello @s-panferov!, Noticed a strange issue while building my application today. When I run the very first build, the error checker reports all errors & fails the build. However, if...
I have tried to search for this, but couldn't find something similar, so I am asking 😄. I am using `awesome-typescript-loader` to bundle my typescript project into one `build/index.js` file:...
Hi How do I get declaration file to emit? I've set `"declaration": true` in my tsconfig.json and I've set the library in the output on my webpack config. Is there...
I am using the version 2.2.4 of awesome-typescript-loader and I would like to use the **paths** definition: e.g tsconfig.json: ``` { "compilerOptions": { "baseUrl": ".", "paths": { "shared/*": [ "../shared/*"...
rootDirs is useful for combining relative imports with generated source files.
Maybe it is typescript bug.
I use storybook, but want to provide different `tsconfig.json` to storybook. So- I add this options to `/.storybook/webpack.config.js` ```javascript storybookBaseConfig.module.rules.push({ test: /\.tsx?$/, loader: 'awesome-typescript-loader', include: resolvePath('src'), exclude: /node_modules/, options: {...
Hi! How can I fork the typechecker? Is this done by default? I see that it [used to be in the README](https://github.com/s-panferov/awesome-typescript-loader/commit/85e9e1bc) but it doesn't seem to be mentioned anymore...
When I configure "useCache: true", webpack does not emit Typescript declaration files: ``` Hash: 62c430379e1b16a959c9 Version: webpack 1.13.1 Time: 10251ms Asset Size Chunks Chunk Names ./app.js 4.76 kB 0 [emitted]...
I saw this problem discussed many times here, and a lot of solutions, but none of them work for me. this is my tsconfig.json ``` { "compilerOptions": { "target": "es2015",...