2022-05-07 16:17:37 +02:00
|
|
|
// todo: use import assertions once they're supported by Node.js & ESLint
|
|
|
|
// https://github.com/tc39/proposal-import-assertions
|
|
|
|
import {createRequire} from 'module'
|
|
|
|
const require = createRequire(import.meta.url)
|
2018-09-07 19:56:05 +02:00
|
|
|
|
2021-04-18 19:02:54 +02:00
|
|
|
const baseProfile = require('./base.json')
|
2022-05-07 16:17:37 +02:00
|
|
|
import {products} from './products.js'
|
2018-09-07 19:56:05 +02:00
|
|
|
|
2022-05-07 16:17:37 +02:00
|
|
|
const profile = {
|
2021-04-18 19:02:54 +02:00
|
|
|
...baseProfile,
|
2018-09-07 19:56:05 +02:00
|
|
|
locale: 'de-DE',
|
|
|
|
timezone: 'Europe/Berlin',
|
|
|
|
salt: Buffer.from('ggnvMVV8RTt67gh1', 'utf8'),
|
|
|
|
addMicMac: true,
|
|
|
|
|
|
|
|
products,
|
|
|
|
|
2021-04-18 22:31:41 +02:00
|
|
|
refreshJourneyUseOutReconL: true,
|
2018-09-07 19:56:05 +02:00
|
|
|
trip: true,
|
|
|
|
radar: true,
|
|
|
|
refreshJourney: true,
|
|
|
|
reachableFrom: true
|
|
|
|
}
|
|
|
|
|
2022-05-07 16:17:37 +02:00
|
|
|
export {
|
|
|
|
profile,
|
|
|
|
}
|