Skip to content

Commit 06e3aa5

Browse files
authored
Aaron/ff 2391/source maps (#80)
* include typescript with source maps * just generate normal source maps
1 parent 16ad4f0 commit 06e3aa5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eppo/js-client-sdk-common",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "Eppo SDK for client-side JavaScript applications (base for both web and react native)",
55
"main": "dist/index.js",
66
"files": [

webpack.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1+
/* eslint-disable @typescript-eslint/no-var-requires */
12
const path = require('path');
23

34
const TerserPlugin = require('terser-webpack-plugin');
45

56
module.exports = {
67
entry: './src/index.ts',
78
mode: 'production',
8-
devtool: 'inline-source-map',
9+
devtool: 'source-map',
910
target: 'web',
1011
module: {
1112
rules: [

0 commit comments

Comments
 (0)