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-12 22:14:30 +02:00
|
|
|
|
2024-02-06 22:58:49 +01:00
|
|
|
const baseProfile = require('./base.json');
|
|
|
|
import {products} from './products.js';
|
2018-04-12 22:14:30 +02:00
|
|
|
|
2022-05-07 16:17:37 +02:00
|
|
|
const profile = {
|
2021-04-18 19:02:54 +02:00
|
|
|
...baseProfile,
|
2018-04-12 22:14:30 +02:00
|
|
|
locale: 'da-DK',
|
|
|
|
timezone: 'Europe/Copenhagen',
|
|
|
|
|
|
|
|
products: products,
|
|
|
|
|
2021-04-18 22:31:41 +02:00
|
|
|
refreshJourneyUseOutReconL: true,
|
2018-04-12 22:14:30 +02:00
|
|
|
trip: true,
|
|
|
|
radar: true,
|
2024-02-06 22:58:49 +01:00
|
|
|
};
|
2018-04-12 22:14:30 +02:00
|
|
|
|
2022-05-07 16:17:37 +02:00
|
|
|
export {
|
|
|
|
profile,
|
2024-02-06 22:58:49 +01:00
|
|
|
};
|