mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 23:29:35 +02:00
26 lines
590 B
JavaScript
26 lines
590 B
JavaScript
// 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)
|
|
|
|
const baseProfile = require('./base.json')
|
|
import {products} from './products.js'
|
|
|
|
const profile = {
|
|
...baseProfile,
|
|
locale: 'en-US',
|
|
timezone: 'America/Chicago',
|
|
|
|
products,
|
|
|
|
refreshJourneyUseOutReconL: true,
|
|
trip: true,
|
|
radar: true,
|
|
refreshJourney: true,
|
|
reachableFrom: true,
|
|
remarks: true, // `.svcResL[0].res.msgL[]` is missing though 🤔
|
|
}
|
|
|
|
export {
|
|
profile,
|
|
}
|