Skip to content

Commit 4288234

Browse files
fix: webpack ts-loader build conf (#779)
1 parent 048e876 commit 4288234

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

packages/epk-decryption/webpack.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ module.exports = {
3333
use: [
3434
{
3535
loader: 'ts-loader',
36+
options: {
37+
configFile: 'tsconfig.build.json',
38+
},
3639
},
3740
],
3841
exclude: /node_modules/,

packages/epk-signature/webpack.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ module.exports = {
3333
use: [
3434
{
3535
loader: 'ts-loader',
36+
options: {
37+
configFile: 'tsconfig.build.json',
38+
},
3639
},
3740
],
3841
exclude: /node_modules/,

packages/request-client.js/webpack.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ module.exports = {
3737
use: [
3838
{
3939
loader: 'ts-loader',
40+
options: {
41+
configFile: 'tsconfig.build.json',
42+
},
4043
},
4144
],
4245
exclude: /node_modules/,

packages/web3-signature/webpack.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ module.exports = {
3333
use: [
3434
{
3535
loader: 'ts-loader',
36+
options: {
37+
configFile: 'tsconfig.build.json',
38+
},
3639
},
3740
],
3841
exclude: /node_modules/,

0 commit comments

Comments
 (0)