@zubenelakrab/codepack
Version:
Compress entire codebases into AI-friendly single files with 9 output formats optimized for ChatGPT, Claude, and other AI tools
20 lines • 359 B
JavaScript
module.exports = {
testEnvironment: 'node',
coverageDirectory: 'coverage',
collectCoverageFrom: [
'src/**/*.js',
'!src/**/*.test.js',
],
testMatch: [
'**/__tests__/**/*.js',
'**/?(*.)+(spec|test).js'
],
coverageThreshold: {
global: {
statements: 80,
branches: 70,
functions: 80,
lines: 80
}
}
};