mirror of
https://git.zavage.net/Zavage-Software/search-with-chatgpt-powered-by-openai-extension.git
synced 2026-08-10 13:40:29 -06:00
21 lines
393 B
JavaScript
21 lines
393 B
JavaScript
export default {
|
|
sourceDir: ".",
|
|
artifactsDir: "web-ext-artifacts",
|
|
ignoreFiles: [
|
|
"AGENTS.md",
|
|
"CHANGELOG.md",
|
|
"README.md",
|
|
"package.json",
|
|
"package-lock.json",
|
|
"web-ext-config.mjs",
|
|
"web-ext-artifacts/**",
|
|
],
|
|
build: {
|
|
filename: "search-with-chatgpt-firefox-{version}.zip",
|
|
overwriteDest: true,
|
|
},
|
|
lint: {
|
|
warningsAsErrors: true,
|
|
},
|
|
};
|