Skip to content

Commit 64a7e27

Browse files
committed
Update README
1 parent b5fe247 commit 64a7e27

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,24 @@ Then add this plugin in `tsconfig.json`.
7676
### paths (required)
7777

7878
Specify directory in relative path to the project's root (`tsconfig.json`'s dir). All `.ts` or `.js` files in the directories can be Namespace Imported with auto-completion.
79+
80+
example:
81+
82+
```json
83+
"options": {
84+
"paths": ["src/logics"]
85+
}
86+
```
87+
88+
### ignoreNamedExport
89+
90+
If true, named export from files in `paths` won't be shown in auto-completion.
91+
92+
example:
93+
94+
```json
95+
"options": {
96+
"paths": ["src/logics"],
97+
"ignoreNamedExport": true
98+
}
99+
```

0 commit comments

Comments
 (0)