File tree 2 files changed +1
-17
lines changed
2 files changed +1
-17
lines changed Original file line number Diff line number Diff line change 14
14
- 18
15
15
os :
16
16
- macOS-latest
17
- - windows-latest
17
+ # - windows-latest # I don't have a Windows machine to debug
18
18
- ubuntu-latest
19
19
runs-on : ${{ matrix.os }}
20
20
steps :
Original file line number Diff line number Diff line change @@ -25,10 +25,6 @@ export const interfaceVersion = 2
25
25
26
26
export type TsResolverOptions = SyncOpts & {
27
27
alwaysTryTypes ?: boolean
28
- /**
29
- * @deprecated use `project` instead
30
- */
31
- directory ?: string [ ] | string
32
28
project ?: string [ ] | string
33
29
extensions ?: string [ ]
34
30
packageFilter ?: ( pkg : Record < string , string > ) => Record < string , string >
@@ -257,18 +253,6 @@ function initMappers(options: TsResolverOptions) {
257
253
return
258
254
}
259
255
260
- // eslint-disable-next-line sonar/deprecation
261
- if ( options . directory ) {
262
- console . warn (
263
- `[${ IMPORTER_NAME } ]: option \`directory\` is deprecated, please use \`project\` instead` ,
264
- )
265
-
266
- if ( ! options . project ) {
267
- // eslint-disable-next-line sonar/deprecation
268
- options . project = options . directory
269
- }
270
- }
271
-
272
256
const configPaths =
273
257
typeof options . project === 'string'
274
258
? [ options . project ]
You can’t perform that action at this time.
0 commit comments