airport-utils
Version:
Convert local ISO 8601 timestamps to UTC using airport IATA codes, with airport geo-data
15 lines • 383 B
JavaScript
export default {
preset: 'ts-jest',
testEnvironment: 'node',
roots: ['<rootDir>/tests'],
collectCoverage: true,
coverageThreshold: {
global: { branches: 100, functions: 100, lines: 100, statements: 100 }
},
moduleFileExtensions: ['ts', 'js', 'json'],
transform: { '^.+\\.ts$': 'ts-jest' },
coveragePathIgnorePatterns: [
'/node_modules/',
'/dist/'
]
};