mirror of
https://github.com/Graylog2/graylog2-server.git
synced 2026-03-13 09:32:21 +08:00
* Using multiple compilers for webpack build. * Use single compiler, feed plugin names into template. * Adding back reload option. * Using `webpack-dev-server`. * Converting webpack configs to TS. * Adding license header. * Migrating `core` module back to JS`. * Fixing up handling of `config.js`. * Fixing linter hints. * Removing unused import. * Removing unused HMR plugin. * Using `$GRAYLOG_API_URL` for proxying if present. * Removing unused packages. * Typing `global.pluginNames`. * Removing `webpack-dev-middleware` & `webpack-hot-middleware`. * Adding license header. * Bumping `csstype` to `3.1.1`.
26 lines
763 B
TypeScript
26 lines
763 B
TypeScript
/*
|
|
* Copyright (C) 2020 Graylog, Inc.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the Server Side Public License, version 1,
|
|
* as published by MongoDB, Inc.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* Server Side Public License for more details.
|
|
*
|
|
* You should have received a copy of the Server Side Public License
|
|
* along with this program. If not, see
|
|
* <http://www.mongodb.com/licensing/server-side-public-license>.
|
|
*/
|
|
declare global {
|
|
namespace NodeJS {
|
|
interface Global {
|
|
pluginNames: Array<string>
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|