mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
22 lines
370 B
Plaintext
22 lines
370 B
Plaintext
|
{
|
||
|
"all": true,
|
||
|
"extends": "@istanbuljs/nyc-config-typescript",
|
||
|
"include": [
|
||
|
"src/**/*.ts",
|
||
|
"src/**/*.tsx"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"cypress/**/*.*",
|
||
|
"**/*.d.ts",
|
||
|
"**/*.cy.tsx",
|
||
|
"**/*.cy.ts"
|
||
|
],
|
||
|
"reporter": [
|
||
|
"text",
|
||
|
"html",
|
||
|
"text-summary",
|
||
|
"json"
|
||
|
],
|
||
|
"temp-dir": "coverage/.nyc_output",
|
||
|
"report-dir": "coverage/cypress"
|
||
|
}
|