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
|
2024-02-06 22:58:49 +01:00
|
|
|
import {createRequire} from 'module';
|
|
|
|
const require = createRequire(import.meta.url);
|
2018-04-09 19:49:18 +02:00
|
|
|
|
2024-02-06 22:58:49 +01:00
|
|
|
const baseProfile = require('./base.json');
|
|
|
|
import {products} from './products.js';
|
2018-04-09 19:49:18 +02:00
|
|
|
|
2022-05-07 16:17:37 +02:00
|
|
|
const profile = {
|
2021-04-18 19:02:54 +02:00
|
|
|
...baseProfile,
|
2018-04-09 19:49:18 +02:00
|
|
|
locale: 'de-LU',
|
|
|
|
timezone: 'Europe/Luxembourg',
|
|
|
|
|
|
|
|
products: products,
|
|
|
|
|
|
|
|
trip: true,
|
|
|
|
radar: true,
|
|
|
|
reachableFrom: true,
|
2020-11-25 15:45:32 +01:00
|
|
|
|
2021-04-18 22:31:41 +02:00
|
|
|
refreshJourneyUseOutReconL: true,
|
2024-02-06 22:58:49 +01:00
|
|
|
};
|
2018-04-09 19:49:18 +02:00
|
|
|
|
2022-05-07 16:17:37 +02:00
|
|
|
export {
|
|
|
|
profile,
|
2024-02-06 22:58:49 +01:00
|
|
|
};
|