Kill unsafe require

This commit is contained in:
Vendicated 2022-10-05 14:20:34 +02:00
parent 98cfa090d4
commit 7e526e4172
No known key found for this signature in database
GPG key ID: EC781ADFB93EFFA3
3 changed files with 0 additions and 18 deletions

View file

@ -5,7 +5,6 @@ import { mergeDefaults } from '../utils/misc';
interface Settings {
notifyAboutUpdates: boolean;
unsafeRequire: boolean;
useQuickCss: boolean;
plugins: {
[plugin: string]: {
@ -17,7 +16,6 @@ interface Settings {
const DefaultSettings: Settings = {
notifyAboutUpdates: true,
unsafeRequire: false,
useQuickCss: true,
plugins: {}
};