UNPKG

@seawingai/winglog

Version:

A powerful TypeScript/JavaScript logging library built on top of Pino for structured logging with enhanced features

29 lines (28 loc) 664 B
export default { displayName: 'winglog', testEnvironment: 'node', transform: { '^.+\\.[tj]s$': ['ts-jest', { tsconfig: { target: 'es2020', module: 'commonjs', strict: true, esModuleInterop: true, skipLibCheck: true, forceConsistentCasingInFileNames: true, resolveJsonModule: true, declaration: true, outDir: './dist', rootDir: './src' } }], }, moduleFileExtensions: ['ts', 'js', 'html'], testMatch: ['**/*.spec.ts'], collectCoverageFrom: [ 'src/**/*.ts', '!src/**/*.spec.ts', '!src/**/*.d.ts', ], coverageDirectory: './coverage', };