diff --git a/README-CN.md b/README-CN.md index 4b6f33f..b917753 100644 --- a/README-CN.md +++ b/README-CN.md @@ -104,10 +104,10 @@ TypeScript 编译器选项。 默认值: ```javascript [ - 'node_modules', '.git', 'dist', /\.d\.ts$/, + file => file.includes('node_modules'), file => file.endsWith('.log') ] ``` diff --git a/README.md b/README.md index 284a3f7..4e4a7a5 100644 --- a/README.md +++ b/README.md @@ -104,10 +104,10 @@ Patterns to ignore during the copy phase. Default: ```javascript [ - 'node_modules', '.git', 'dist', /\.d\.ts$/, + file => file.includes('node_modules'), file => file.endsWith('.log') ] ```