Webpack 4 with React typescript generates strange source code in dev tools
I upgraded webpack from version 3.8.1 to version 4.15.1 and when I wanted to debug code I noticed, that in my source code of my typescript components is some sort of harmony or webpack injection.
In webpack 3.8.1 it looked like this
I dont know exactly why is this happening since all what I did is that I updated several npm packages which are required for webpack 4
Package.json
{
"name": "App",
"private": true,
"version": "0.0.0",
"devDependencies": {
"@types/tapable": "^0.2.5",
"@types/webpack": "4.0.0",
"@types/webpack-env": "1.13.6",
"aspnet-webpack": "3.0.0",
"aspnet-webpack-react": "3.0.0",
"awesome-typescript-loader": "5.2.0",
"babel-core": "^6.26.3",
"css-loader": "0.28.4",
"event-source-polyfill": "1.0.4",
"file-loader": "2.0.0",
"isomorphic-fetch": "2.2.1",
"less": "3.7.1",
"less-loader": "4.1.0",
"mini-css-extract-plugin": "0.4.4",
"node-noop": "1.0.0",
"style-loader": "0.18.2",
"typescript": "3.0.1",
"url-loader": "0.5.9",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2"
},
"dependencies": {
"@progress/kendo-data-query": "1.4.1",
"@progress/kendo-drawing": "1.5.7",
"@progress/kendo-react-buttons": "2.3.1",
"@progress/kendo-react-dateinputs": "2.3.1",
"@progress/kendo-react-dialogs": "2.3.1",
"@progress/kendo-react-dropdowns": "2.3.1",
"@progress/kendo-react-grid": "2.3.1",
"@progress/kendo-react-inputs": "2.3.1",
"@progress/kendo-react-intl": "2.3.1",
"@progress/kendo-react-layout": "2.3.1",
"@progress/kendo-react-pdf": "2.3.1",
"@progress/kendo-react-popup": "2.3.1",
"@progress/kendo-react-animation": "2.3.1",
"@progress/kendo-theme-default": "2.60.0",
"@types/deep-equal": "1.0.1",
"@types/history": "4.6.0",
"@types/prop-types": "15.5.6",
"@types/react": "16.4.2",
"@types/react-dom": "16.0.7",
"@types/react-hot-loader": "3.0.3",
"@types/react-redux": "4.4.45",
"@types/react-router": "4.0.12",
"@types/react-router-dom": "4.0.5",
"@types/react-router-redux": "5.0.3",
"babel-polyfill": "6.26.0",
"bootstrap-less-port": "0.3.0",
"deep-equal": "1.0.1",
"history": "4.6.3",
"jquery": "3.3.1",
"moment": "2.22.2",
"query-string": "5.1.1",
"react": "16.4.2",
"react-appinsights": "1.0.4",
"react-dom": "16.4.2",
"react-hot-loader": "3.0.0-beta.7",
"react-redux": "5.0.5",
"react-resize-detector": "3.1.1",
"react-router-dom": "4.3.1",
"react-router-redux": "5.0.0-alpha.6",
"redux": "3.7.1",
"redux-form": "7.4.2",
"redux-logger": "3.0.6",
"redux-thunk": "2.2.0",
"serialize-error": "2.1.0"
},
"scripts": {
"build-dev": "webpack --config webpack.config.vendor.js --env.environment=development && webpack --config webpack.config.js --env.environment=development",
"build-prod": "webpack --config webpack.config.vendor.js --env.prod && webpack --config webpack.config.js --env.prod"
}
}
Tsconfig
{
"compilerOptions": {
"baseUrl": "ClientApp",
"module": "esnext",
"moduleResolution": "node",
"target": "es6",
"jsx": "react",
"experimentalDecorators": true,
"sourceMap": true,
"inlineSources": true,
"removeComments": true,
"skipDefaultLibCheck": true,
"strict": false,
"lib": [ "es6", "dom" ],
"noImplicitAny": false,
"allowSyntheticDefaultImports": true
},
"exclude": [
"bin",
"node_modules"
]
}
webpack.config
const path = require('path');
const webpack = require('webpack');
const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin;
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = (env) => {
if (!env) {
env = {
environment: "development"
};
}
const isDevBuild = env && env.environment === "development";
return [{
stats: { modules: false },
entry: { 'main-client': './ClientApp/boot-client.tsx' },
mode: "development",
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
modules: [
'./node_modules',
'./ClientApp'
]
},
output: {
path: path.join(__dirname, clientBundleOutputDir),
filename: '[name].js',
publicPath: 'dist/'
},
module: {
rules: [
{ test: /.tsx?$/, include: /ClientApp/, use: 'awesome-typescript-loader?silent=true' },
{ test: /.(png|jpg|jpeg|gif|svg)$/, use: 'url-loader?limit=25000' },
{
test: /.less$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
{ loader: 'less-loader', options: { strictMath: true, noIeCompat: true } }
]
},
{
test: /.(woff|woff2|eot|ttf)$/,
use: [
{
loader: 'file-loader',
options: {
publicPath: ""
}
}
]
}
]
},
plugins: [
new CheckerPlugin(),
new MiniCssExtractPlugin({
filename: "site.css",
chunkFilename: "[id].css"
}),
new webpack.DllReferencePlugin({
context: __dirname,
manifest: require('./wwwroot/dist/vendor-manifest.json')
}),
].concat(isDevBuild ? [
// Plugins that apply in development builds only
new webpack.SourceMapDevToolPlugin({
filename: '[file].map', // Remove this line if you prefer inline source maps
moduleFilenameTemplate: path.relative(clientBundleOutputDir, '[resourcePath]') // Point sourcemap entries to the original file locations on disk
})
] : [
])
}];
};
typescript webpack google-chrome-devtools webpack-4
add a comment |
I upgraded webpack from version 3.8.1 to version 4.15.1 and when I wanted to debug code I noticed, that in my source code of my typescript components is some sort of harmony or webpack injection.
In webpack 3.8.1 it looked like this
I dont know exactly why is this happening since all what I did is that I updated several npm packages which are required for webpack 4
Package.json
{
"name": "App",
"private": true,
"version": "0.0.0",
"devDependencies": {
"@types/tapable": "^0.2.5",
"@types/webpack": "4.0.0",
"@types/webpack-env": "1.13.6",
"aspnet-webpack": "3.0.0",
"aspnet-webpack-react": "3.0.0",
"awesome-typescript-loader": "5.2.0",
"babel-core": "^6.26.3",
"css-loader": "0.28.4",
"event-source-polyfill": "1.0.4",
"file-loader": "2.0.0",
"isomorphic-fetch": "2.2.1",
"less": "3.7.1",
"less-loader": "4.1.0",
"mini-css-extract-plugin": "0.4.4",
"node-noop": "1.0.0",
"style-loader": "0.18.2",
"typescript": "3.0.1",
"url-loader": "0.5.9",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2"
},
"dependencies": {
"@progress/kendo-data-query": "1.4.1",
"@progress/kendo-drawing": "1.5.7",
"@progress/kendo-react-buttons": "2.3.1",
"@progress/kendo-react-dateinputs": "2.3.1",
"@progress/kendo-react-dialogs": "2.3.1",
"@progress/kendo-react-dropdowns": "2.3.1",
"@progress/kendo-react-grid": "2.3.1",
"@progress/kendo-react-inputs": "2.3.1",
"@progress/kendo-react-intl": "2.3.1",
"@progress/kendo-react-layout": "2.3.1",
"@progress/kendo-react-pdf": "2.3.1",
"@progress/kendo-react-popup": "2.3.1",
"@progress/kendo-react-animation": "2.3.1",
"@progress/kendo-theme-default": "2.60.0",
"@types/deep-equal": "1.0.1",
"@types/history": "4.6.0",
"@types/prop-types": "15.5.6",
"@types/react": "16.4.2",
"@types/react-dom": "16.0.7",
"@types/react-hot-loader": "3.0.3",
"@types/react-redux": "4.4.45",
"@types/react-router": "4.0.12",
"@types/react-router-dom": "4.0.5",
"@types/react-router-redux": "5.0.3",
"babel-polyfill": "6.26.0",
"bootstrap-less-port": "0.3.0",
"deep-equal": "1.0.1",
"history": "4.6.3",
"jquery": "3.3.1",
"moment": "2.22.2",
"query-string": "5.1.1",
"react": "16.4.2",
"react-appinsights": "1.0.4",
"react-dom": "16.4.2",
"react-hot-loader": "3.0.0-beta.7",
"react-redux": "5.0.5",
"react-resize-detector": "3.1.1",
"react-router-dom": "4.3.1",
"react-router-redux": "5.0.0-alpha.6",
"redux": "3.7.1",
"redux-form": "7.4.2",
"redux-logger": "3.0.6",
"redux-thunk": "2.2.0",
"serialize-error": "2.1.0"
},
"scripts": {
"build-dev": "webpack --config webpack.config.vendor.js --env.environment=development && webpack --config webpack.config.js --env.environment=development",
"build-prod": "webpack --config webpack.config.vendor.js --env.prod && webpack --config webpack.config.js --env.prod"
}
}
Tsconfig
{
"compilerOptions": {
"baseUrl": "ClientApp",
"module": "esnext",
"moduleResolution": "node",
"target": "es6",
"jsx": "react",
"experimentalDecorators": true,
"sourceMap": true,
"inlineSources": true,
"removeComments": true,
"skipDefaultLibCheck": true,
"strict": false,
"lib": [ "es6", "dom" ],
"noImplicitAny": false,
"allowSyntheticDefaultImports": true
},
"exclude": [
"bin",
"node_modules"
]
}
webpack.config
const path = require('path');
const webpack = require('webpack');
const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin;
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = (env) => {
if (!env) {
env = {
environment: "development"
};
}
const isDevBuild = env && env.environment === "development";
return [{
stats: { modules: false },
entry: { 'main-client': './ClientApp/boot-client.tsx' },
mode: "development",
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
modules: [
'./node_modules',
'./ClientApp'
]
},
output: {
path: path.join(__dirname, clientBundleOutputDir),
filename: '[name].js',
publicPath: 'dist/'
},
module: {
rules: [
{ test: /.tsx?$/, include: /ClientApp/, use: 'awesome-typescript-loader?silent=true' },
{ test: /.(png|jpg|jpeg|gif|svg)$/, use: 'url-loader?limit=25000' },
{
test: /.less$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
{ loader: 'less-loader', options: { strictMath: true, noIeCompat: true } }
]
},
{
test: /.(woff|woff2|eot|ttf)$/,
use: [
{
loader: 'file-loader',
options: {
publicPath: ""
}
}
]
}
]
},
plugins: [
new CheckerPlugin(),
new MiniCssExtractPlugin({
filename: "site.css",
chunkFilename: "[id].css"
}),
new webpack.DllReferencePlugin({
context: __dirname,
manifest: require('./wwwroot/dist/vendor-manifest.json')
}),
].concat(isDevBuild ? [
// Plugins that apply in development builds only
new webpack.SourceMapDevToolPlugin({
filename: '[file].map', // Remove this line if you prefer inline source maps
moduleFilenameTemplate: path.relative(clientBundleOutputDir, '[resourcePath]') // Point sourcemap entries to the original file locations on disk
})
] : [
])
}];
};
typescript webpack google-chrome-devtools webpack-4
you are missing this: webpack.js.org/configuration/devtool/#src/components/Sidebar/…
– PlayMa256
Nov 12 at 11:17
when I includeddevtool
prop in webpack.config it didnt show any source files at all
– Martin
Nov 12 at 11:33
add a comment |
I upgraded webpack from version 3.8.1 to version 4.15.1 and when I wanted to debug code I noticed, that in my source code of my typescript components is some sort of harmony or webpack injection.
In webpack 3.8.1 it looked like this
I dont know exactly why is this happening since all what I did is that I updated several npm packages which are required for webpack 4
Package.json
{
"name": "App",
"private": true,
"version": "0.0.0",
"devDependencies": {
"@types/tapable": "^0.2.5",
"@types/webpack": "4.0.0",
"@types/webpack-env": "1.13.6",
"aspnet-webpack": "3.0.0",
"aspnet-webpack-react": "3.0.0",
"awesome-typescript-loader": "5.2.0",
"babel-core": "^6.26.3",
"css-loader": "0.28.4",
"event-source-polyfill": "1.0.4",
"file-loader": "2.0.0",
"isomorphic-fetch": "2.2.1",
"less": "3.7.1",
"less-loader": "4.1.0",
"mini-css-extract-plugin": "0.4.4",
"node-noop": "1.0.0",
"style-loader": "0.18.2",
"typescript": "3.0.1",
"url-loader": "0.5.9",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2"
},
"dependencies": {
"@progress/kendo-data-query": "1.4.1",
"@progress/kendo-drawing": "1.5.7",
"@progress/kendo-react-buttons": "2.3.1",
"@progress/kendo-react-dateinputs": "2.3.1",
"@progress/kendo-react-dialogs": "2.3.1",
"@progress/kendo-react-dropdowns": "2.3.1",
"@progress/kendo-react-grid": "2.3.1",
"@progress/kendo-react-inputs": "2.3.1",
"@progress/kendo-react-intl": "2.3.1",
"@progress/kendo-react-layout": "2.3.1",
"@progress/kendo-react-pdf": "2.3.1",
"@progress/kendo-react-popup": "2.3.1",
"@progress/kendo-react-animation": "2.3.1",
"@progress/kendo-theme-default": "2.60.0",
"@types/deep-equal": "1.0.1",
"@types/history": "4.6.0",
"@types/prop-types": "15.5.6",
"@types/react": "16.4.2",
"@types/react-dom": "16.0.7",
"@types/react-hot-loader": "3.0.3",
"@types/react-redux": "4.4.45",
"@types/react-router": "4.0.12",
"@types/react-router-dom": "4.0.5",
"@types/react-router-redux": "5.0.3",
"babel-polyfill": "6.26.0",
"bootstrap-less-port": "0.3.0",
"deep-equal": "1.0.1",
"history": "4.6.3",
"jquery": "3.3.1",
"moment": "2.22.2",
"query-string": "5.1.1",
"react": "16.4.2",
"react-appinsights": "1.0.4",
"react-dom": "16.4.2",
"react-hot-loader": "3.0.0-beta.7",
"react-redux": "5.0.5",
"react-resize-detector": "3.1.1",
"react-router-dom": "4.3.1",
"react-router-redux": "5.0.0-alpha.6",
"redux": "3.7.1",
"redux-form": "7.4.2",
"redux-logger": "3.0.6",
"redux-thunk": "2.2.0",
"serialize-error": "2.1.0"
},
"scripts": {
"build-dev": "webpack --config webpack.config.vendor.js --env.environment=development && webpack --config webpack.config.js --env.environment=development",
"build-prod": "webpack --config webpack.config.vendor.js --env.prod && webpack --config webpack.config.js --env.prod"
}
}
Tsconfig
{
"compilerOptions": {
"baseUrl": "ClientApp",
"module": "esnext",
"moduleResolution": "node",
"target": "es6",
"jsx": "react",
"experimentalDecorators": true,
"sourceMap": true,
"inlineSources": true,
"removeComments": true,
"skipDefaultLibCheck": true,
"strict": false,
"lib": [ "es6", "dom" ],
"noImplicitAny": false,
"allowSyntheticDefaultImports": true
},
"exclude": [
"bin",
"node_modules"
]
}
webpack.config
const path = require('path');
const webpack = require('webpack');
const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin;
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = (env) => {
if (!env) {
env = {
environment: "development"
};
}
const isDevBuild = env && env.environment === "development";
return [{
stats: { modules: false },
entry: { 'main-client': './ClientApp/boot-client.tsx' },
mode: "development",
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
modules: [
'./node_modules',
'./ClientApp'
]
},
output: {
path: path.join(__dirname, clientBundleOutputDir),
filename: '[name].js',
publicPath: 'dist/'
},
module: {
rules: [
{ test: /.tsx?$/, include: /ClientApp/, use: 'awesome-typescript-loader?silent=true' },
{ test: /.(png|jpg|jpeg|gif|svg)$/, use: 'url-loader?limit=25000' },
{
test: /.less$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
{ loader: 'less-loader', options: { strictMath: true, noIeCompat: true } }
]
},
{
test: /.(woff|woff2|eot|ttf)$/,
use: [
{
loader: 'file-loader',
options: {
publicPath: ""
}
}
]
}
]
},
plugins: [
new CheckerPlugin(),
new MiniCssExtractPlugin({
filename: "site.css",
chunkFilename: "[id].css"
}),
new webpack.DllReferencePlugin({
context: __dirname,
manifest: require('./wwwroot/dist/vendor-manifest.json')
}),
].concat(isDevBuild ? [
// Plugins that apply in development builds only
new webpack.SourceMapDevToolPlugin({
filename: '[file].map', // Remove this line if you prefer inline source maps
moduleFilenameTemplate: path.relative(clientBundleOutputDir, '[resourcePath]') // Point sourcemap entries to the original file locations on disk
})
] : [
])
}];
};
typescript webpack google-chrome-devtools webpack-4
I upgraded webpack from version 3.8.1 to version 4.15.1 and when I wanted to debug code I noticed, that in my source code of my typescript components is some sort of harmony or webpack injection.
In webpack 3.8.1 it looked like this
I dont know exactly why is this happening since all what I did is that I updated several npm packages which are required for webpack 4
Package.json
{
"name": "App",
"private": true,
"version": "0.0.0",
"devDependencies": {
"@types/tapable": "^0.2.5",
"@types/webpack": "4.0.0",
"@types/webpack-env": "1.13.6",
"aspnet-webpack": "3.0.0",
"aspnet-webpack-react": "3.0.0",
"awesome-typescript-loader": "5.2.0",
"babel-core": "^6.26.3",
"css-loader": "0.28.4",
"event-source-polyfill": "1.0.4",
"file-loader": "2.0.0",
"isomorphic-fetch": "2.2.1",
"less": "3.7.1",
"less-loader": "4.1.0",
"mini-css-extract-plugin": "0.4.4",
"node-noop": "1.0.0",
"style-loader": "0.18.2",
"typescript": "3.0.1",
"url-loader": "0.5.9",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2"
},
"dependencies": {
"@progress/kendo-data-query": "1.4.1",
"@progress/kendo-drawing": "1.5.7",
"@progress/kendo-react-buttons": "2.3.1",
"@progress/kendo-react-dateinputs": "2.3.1",
"@progress/kendo-react-dialogs": "2.3.1",
"@progress/kendo-react-dropdowns": "2.3.1",
"@progress/kendo-react-grid": "2.3.1",
"@progress/kendo-react-inputs": "2.3.1",
"@progress/kendo-react-intl": "2.3.1",
"@progress/kendo-react-layout": "2.3.1",
"@progress/kendo-react-pdf": "2.3.1",
"@progress/kendo-react-popup": "2.3.1",
"@progress/kendo-react-animation": "2.3.1",
"@progress/kendo-theme-default": "2.60.0",
"@types/deep-equal": "1.0.1",
"@types/history": "4.6.0",
"@types/prop-types": "15.5.6",
"@types/react": "16.4.2",
"@types/react-dom": "16.0.7",
"@types/react-hot-loader": "3.0.3",
"@types/react-redux": "4.4.45",
"@types/react-router": "4.0.12",
"@types/react-router-dom": "4.0.5",
"@types/react-router-redux": "5.0.3",
"babel-polyfill": "6.26.0",
"bootstrap-less-port": "0.3.0",
"deep-equal": "1.0.1",
"history": "4.6.3",
"jquery": "3.3.1",
"moment": "2.22.2",
"query-string": "5.1.1",
"react": "16.4.2",
"react-appinsights": "1.0.4",
"react-dom": "16.4.2",
"react-hot-loader": "3.0.0-beta.7",
"react-redux": "5.0.5",
"react-resize-detector": "3.1.1",
"react-router-dom": "4.3.1",
"react-router-redux": "5.0.0-alpha.6",
"redux": "3.7.1",
"redux-form": "7.4.2",
"redux-logger": "3.0.6",
"redux-thunk": "2.2.0",
"serialize-error": "2.1.0"
},
"scripts": {
"build-dev": "webpack --config webpack.config.vendor.js --env.environment=development && webpack --config webpack.config.js --env.environment=development",
"build-prod": "webpack --config webpack.config.vendor.js --env.prod && webpack --config webpack.config.js --env.prod"
}
}
Tsconfig
{
"compilerOptions": {
"baseUrl": "ClientApp",
"module": "esnext",
"moduleResolution": "node",
"target": "es6",
"jsx": "react",
"experimentalDecorators": true,
"sourceMap": true,
"inlineSources": true,
"removeComments": true,
"skipDefaultLibCheck": true,
"strict": false,
"lib": [ "es6", "dom" ],
"noImplicitAny": false,
"allowSyntheticDefaultImports": true
},
"exclude": [
"bin",
"node_modules"
]
}
webpack.config
const path = require('path');
const webpack = require('webpack');
const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin;
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = (env) => {
if (!env) {
env = {
environment: "development"
};
}
const isDevBuild = env && env.environment === "development";
return [{
stats: { modules: false },
entry: { 'main-client': './ClientApp/boot-client.tsx' },
mode: "development",
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
modules: [
'./node_modules',
'./ClientApp'
]
},
output: {
path: path.join(__dirname, clientBundleOutputDir),
filename: '[name].js',
publicPath: 'dist/'
},
module: {
rules: [
{ test: /.tsx?$/, include: /ClientApp/, use: 'awesome-typescript-loader?silent=true' },
{ test: /.(png|jpg|jpeg|gif|svg)$/, use: 'url-loader?limit=25000' },
{
test: /.less$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
{ loader: 'less-loader', options: { strictMath: true, noIeCompat: true } }
]
},
{
test: /.(woff|woff2|eot|ttf)$/,
use: [
{
loader: 'file-loader',
options: {
publicPath: ""
}
}
]
}
]
},
plugins: [
new CheckerPlugin(),
new MiniCssExtractPlugin({
filename: "site.css",
chunkFilename: "[id].css"
}),
new webpack.DllReferencePlugin({
context: __dirname,
manifest: require('./wwwroot/dist/vendor-manifest.json')
}),
].concat(isDevBuild ? [
// Plugins that apply in development builds only
new webpack.SourceMapDevToolPlugin({
filename: '[file].map', // Remove this line if you prefer inline source maps
moduleFilenameTemplate: path.relative(clientBundleOutputDir, '[resourcePath]') // Point sourcemap entries to the original file locations on disk
})
] : [
])
}];
};
typescript webpack google-chrome-devtools webpack-4
typescript webpack google-chrome-devtools webpack-4
asked Nov 12 at 7:35
Martin
123213
123213
you are missing this: webpack.js.org/configuration/devtool/#src/components/Sidebar/…
– PlayMa256
Nov 12 at 11:17
when I includeddevtool
prop in webpack.config it didnt show any source files at all
– Martin
Nov 12 at 11:33
add a comment |
you are missing this: webpack.js.org/configuration/devtool/#src/components/Sidebar/…
– PlayMa256
Nov 12 at 11:17
when I includeddevtool
prop in webpack.config it didnt show any source files at all
– Martin
Nov 12 at 11:33
you are missing this: webpack.js.org/configuration/devtool/#src/components/Sidebar/…
– PlayMa256
Nov 12 at 11:17
you are missing this: webpack.js.org/configuration/devtool/#src/components/Sidebar/…
– PlayMa256
Nov 12 at 11:17
when I included
devtool
prop in webpack.config it didnt show any source files at all– Martin
Nov 12 at 11:33
when I included
devtool
prop in webpack.config it didnt show any source files at all– Martin
Nov 12 at 11:33
add a comment |
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53257631%2fwebpack-4-with-react-typescript-generates-strange-source-code-in-dev-tools%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53257631%2fwebpack-4-with-react-typescript-generates-strange-source-code-in-dev-tools%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
you are missing this: webpack.js.org/configuration/devtool/#src/components/Sidebar/…
– PlayMa256
Nov 12 at 11:17
when I included
devtool
prop in webpack.config it didnt show any source files at all– Martin
Nov 12 at 11:33