I have an Angular2 project wrapped up with Webpack 2.1.~ .
I have installed ng2-uploader from npm packages and it's now there under node_modules. Now, while I am starting the application I am getting this error:
"Typescript emitted no output for (..path\ng-file-select.ts) at
Object.loader (path\node_modules\ts-loader..)"
"Typescript emitted no output for (..path\ng2-uploader.ts) at
Object.loader (path\node_modules\ts-loader..)"
"Typescript emitted no output for (..path\ng-file-drop.ts) at
Object.loader (path\node_modules\ts-loader..)"
Is this an issue with typescript loader?
Webpack is compiling the ts files into js and the error is getting out from this part of the index.js of ng2-uploader:
if (outputText == null)
throw new Error("Typescript emitted no output for " + filePath);
I have an Angular2 project wrapped up with Webpack 2.1.~ . I have installed ng2-uploader from npm packages and it's now there under node_modules. Now, while I am starting the application I am getting this error:
Is this an issue with typescript loader?
Webpack is compiling the ts files into js and the error is getting out from this part of the index.js of ng2-uploader:
Here is my tsconfig.json:
Here is my webpack.config.json:
What is wrong, and how can I fix this?