We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got this error from Webpack:
Seemed to be resolved by switching to ts-loader and updating which version of Webpack the project is using to 4.12.0:
ts-loader
webpack.config.js:
module.exports = { entry: './src/app.ts', output: { filename: 'app.js', path: __dirname + '/dist/', }, devServer: { port: 8000, }, resolve: { extensions: ['.ts', '.js'], }, module: { rules: [ { test: /\.ts$/, use: 'ts-loader', }, ], }, };
package.json:
{ "name": "store", "version": "0.0.0", "license": "MIT", "scripts": { "start": "webpack-dev-server" }, "devDependencies": { "awesome-typescript-loader": "3.2.3", "ts-loader": "^4.4.1", "typescript": "2.5.3", "webpack": "4.12.0", "webpack-cli": "^3.0.8", "webpack-dev-server": "3.1.4" } }
Is there another way in which to resolve this issue? @toddmotto
The text was updated successfully, but these errors were encountered:
Updated Webpack and switched to ts-loader to fix issue ultimatecourse…
740e157
…s#10
No branches or pull requests
I got this error from Webpack:
Seemed to be resolved by switching to
ts-loader
and updating which version of Webpack the project is using to 4.12.0:webpack.config.js:
package.json:
Is there another way in which to resolve this issue? @toddmotto
The text was updated successfully, but these errors were encountered: