Skip to content

Commit 7ff385f

Browse files
committed
Remove sourceMap generate config from ts config
1 parent bbc5b61 commit 7ff385f

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

tsconfig.eslint.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"module": "CommonJS",
55
"target": "es5",
66
"lib": ["es6", "dom", "es2016", "es2017"],
7-
"sourceMap": true,
87
"allowJs": false,
98
"jsx": "react",
109
"declaration": true,

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"module": "CommonJS",
66
"target": "es5",
77
"lib": ["es6", "dom", "es2016", "es2017"],
8-
"sourceMap": true,
98
"allowJs": false,
109
"jsx": "react",
1110
"declaration": true,

webpack/webpack.common.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ module.exports = {
7070
{
7171
loader: 'css-loader',
7272
options: {
73-
sourceMap: true,
7473
modules: true,
7574
modules: {
7675
localIdentName: '[local]--[hash:base64:5]',
@@ -79,9 +78,7 @@ module.exports = {
7978
},
8079
{
8180
loader: 'less-loader',
82-
options: {
83-
sourceMap: true,
84-
},
81+
options: {},
8582
},
8683
{
8784
loader: 'postcss-loader',

0 commit comments

Comments
 (0)