mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-15 08:59:58 +00:00
14 lines
513 B
TypeScript
14 lines
513 B
TypeScript
import { ConfigProvider } from './api/configProvider'
|
|
import { Platform } from './api/hostApp'
|
|
|
|
/** @hidden */
|
|
export class CoreConfigProvider extends ConfigProvider {
|
|
platformDefaults = {
|
|
[Platform.macOS]: require('./configDefaults.macos.yaml'),
|
|
[Platform.Windows]: require('./configDefaults.windows.yaml'),
|
|
[Platform.Linux]: require('./configDefaults.linux.yaml'),
|
|
[Platform.Web]: require('./configDefaults.web.yaml'),
|
|
}
|
|
defaults = require('./configDefaults.yaml')
|
|
}
|