mirror of
https://github.com/cline/cline.git
synced 2026-09-21 05:10:09 +08:00
49 lines
787 B
JSON
49 lines
787 B
JSON
{
|
|
"all": true,
|
|
"check-coverage": false,
|
|
"reporter": [
|
|
"text",
|
|
"lcov"
|
|
],
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"**/*.d.ts",
|
|
|
|
"**/*.{test,spec}.{js,jsx,ts,tsx,mjs,cjs}",
|
|
"**/__tests__/**",
|
|
"**/test/**",
|
|
"**/tests/**",
|
|
"**/.nyc_output/**",
|
|
"**/.vscode-test/**",
|
|
"**/tests-results/**",
|
|
"src/test/**",
|
|
|
|
"src/generated/**",
|
|
|
|
"**/node_modules/**",
|
|
"**/dist/**",
|
|
"**/out/**",
|
|
"**/build/**",
|
|
"**/coverage/**",
|
|
"**/coverage-unit/**",
|
|
"**/proto/**",
|
|
|
|
"**/*.{config,setup}.{js,ts,mjs,cjs}",
|
|
"**/vite-env.d.ts",
|
|
|
|
"**/*.{css,scss,sass,less,styl}",
|
|
"**/*.{svg,png,jpg,jpeg,gif,ico}",
|
|
"**/*.{json,yaml,yml}"
|
|
],
|
|
"extension": [
|
|
".ts",
|
|
".js"
|
|
],
|
|
"cache": true,
|
|
"sourceMap": true,
|
|
"instrument": true,
|
|
"report-dir": "./coverage-unit"
|
|
}
|