- 规则预过滤:根据文件语言注入匹配的自定义规则,跳过不相关规则 - 导入去重:对比已有规则,重复项自动注释/标注 - 导入预览编辑:支持在导入前编辑规则字段(severity、description 等) - Word/PPT 导入:新增 DocxConverter、PptxConverter - UI:审查报告移除设置按钮;自定义规则标签显示注入比例
23 lines
614 B
JSON
23 lines
614 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "Node16",
|
|
"target": "ES2022",
|
|
"outDir": "out",
|
|
|
|
"lib": [
|
|
"ES2022"
|
|
],
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true
|
|
/* Additional Checks */
|
|
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
|
|
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
|
|
// "noUnusedParameters": true, /* Report errors on unused parameters. */
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "out"]
|
|
}
|