mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-30 00:07:02 +02:00
20 lines
394 B
TypeScript
20 lines
394 B
TypeScript
const config = {
|
|
reporter: ['html'],
|
|
reportDir: 'coverage',
|
|
tempDir: '.nyc_output',
|
|
include: [
|
|
'../../../packages/frontend/editor-ui/src/**/*.{js,ts,vue}',
|
|
'../../../packages/frontend/editor-ui/dist/**/*.{js,ts}',
|
|
],
|
|
exclude: [
|
|
'**/*.test.{js,ts}',
|
|
'**/*.spec.{js,ts}',
|
|
'**/node_modules/**',
|
|
'**/coverage/**',
|
|
'**/.nyc_output/**',
|
|
],
|
|
sourceMap: true,
|
|
};
|
|
|
|
export = config;
|