diff --git a/src/configuration.ts b/src/configuration.ts index 3226ac1..97ccb9a 100644 --- a/src/configuration.ts +++ b/src/configuration.ts @@ -14,12 +14,6 @@ import { Config } from './config'; import { extensionId } from './constants'; import { Objects } from './system'; -const emptyConfig: Config = new Proxy({} as Config, { - get: function() { - return emptyConfig; - } -}); - type ConfigInspection = { key: string; defaultValue?: T;