-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathweb-ext-config.js
28 lines (26 loc) · 963 Bytes
/
web-ext-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
* Copyright The Morphic: Open in Same Tab copyright holders
* See the AUTHORS.md file at the top-level directory of this distribution and at
* https://github.com/GPII/gpii-open-same-tab-extension/blob/master/AUTHORS.md
*
* Licensed under the New BSD license. You may not use this file except in
* compliance with this license.
*
* You may obtain a copy of the license at
* https://github.com/GPII/gpii-open-same-tab-extension/blob/master/LICENSE.txt
*/
"use strict";
module.exports = {
sourceDir: "./src",
artifactsDir: "./build",
run: {
// Due to https://github.com/mozilla/web-ext/issues/1862
// the following configuration is specified in the npm script instead. Once that
// issue has been addressed, the targets can be removed from the script and just
// use the configuration here instead.
// target: ["firefox-desktop", "chromium"]
},
build: {
overwriteDest: true
}
};