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: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -151,7 +151,8 @@ This plugin provides some custom webpack hooks (all are sync):
151
151
```
152
152
new ForkTsCheckerWebpackPlugin({
153
153
tslint: true,
154
-
vue: true
154
+
vue: true,
155
+
wildcard: '~' // Optional
155
156
})
156
157
```
157
158
@@ -211,7 +212,7 @@ import Hello from '@/components/hello.vue'
211
212
```
212
213
213
214
6. The commonly used `@` path wildcard will work if you set up a `baseUrl` and `paths` (in `compilerOptions`) to include `@/*`. If you don't set this, then
214
-
the fallback for the `@` wildcard will be `[tsconfig directory]/src` (we hope to make this more flexible on future releases):
215
+
the fallback to options.wildcard and if this not exist the fallback will be `[tsconfig directory]/src` (we hope to make this more flexible on future releases):
0 commit comments