aboutsummaryrefslogtreecommitdiffhomepage
path: root/webpack
diff options
context:
space:
mode:
authorAjay Ramachandran <[email protected]>2020-02-03 22:34:43 -0500
committerAjay Ramachandran <[email protected]>2020-02-03 22:34:43 -0500
commitb0a23a5c4e8660b619d2d433e0e9fe17ba53b98a (patch)
treee3e3991a12af6d9103a53b1251795c42c5c1da61 /webpack
parent5bb5dae20ef0f6d03842f4b439420726880579e3 (diff)
downloadSponsorBlock-b0a23a5c4e8660b619d2d433e0e9fe17ba53b98a.tar.gz
SponsorBlock-b0a23a5c4e8660b619d2d433e0e9fe17ba53b98a.zip
Converted options page to TypeScript
Diffstat (limited to 'webpack')
-rw-r--r--webpack/webpack.common.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/webpack/webpack.common.js b/webpack/webpack.common.js
index 55488488..70ea347a 100644
--- a/webpack/webpack.common.js
+++ b/webpack/webpack.common.js
@@ -7,7 +7,8 @@ module.exports = {
entry: {
popup: path.join(__dirname, srcDir + 'popup.ts'),
background: path.join(__dirname, srcDir + 'background.ts'),
- content: path.join(__dirname, srcDir + 'content.ts')
+ content: path.join(__dirname, srcDir + 'content.ts'),
+ options: path.join(__dirname, srcDir + 'options.ts')
},
output: {
path: path.join(__dirname, '../dist/js'),