mirror of
https://github.com/maputnik/editor.git
synced 2026-09-01 01:47:26 +00:00
19 lines
390 B
JSON
19 lines
390 B
JSON
{
|
|
"all": true,
|
|
"extends": "@istanbuljs/nyc-config-typescript",
|
|
"check-coverage": false,
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
|
"exclude": [
|
|
"cypress/**/*.*",
|
|
"**/*.d.ts",
|
|
"**/*.cy.tsx",
|
|
"**/*.cy.ts",
|
|
"./coverage/**",
|
|
"./cypress/**",
|
|
"./dist/**",
|
|
"node_modules"
|
|
],
|
|
"report-dir": "coverage",
|
|
"reporter": ["json", "lcov", "json-summary"]
|
|
}
|