You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/project/files.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ or `include` and `exclude` to specify files. e.g.
16
16
```json
17
17
{
18
18
"include":[
19
-
"./folder/**/*"
19
+
"./folder"
20
20
],
21
21
"exclude":[
22
22
"./folder/**/*.spec.ts",
@@ -28,4 +28,4 @@ or `include` and `exclude` to specify files. e.g.
28
28
Some notes:
29
29
30
30
* if `files` are specified other options are ignored
31
-
*`**/*` means all folder and any files (the extensions `.ts`/`.tsx` will be included and even `.js`/`.jsx` if `allowJs` is true).
31
+
*`**/*`(e.g. sample usage `somefolder/**/*`) means all folder and any files (the extensions `.ts`/`.tsx` will be included and even `.js`/`.jsx` if `allowJs` is true)
0 commit comments