File tree Expand file tree Collapse file tree 2 files changed +1
-17
lines changed Expand file tree Collapse file tree 2 files changed +1
-17
lines changed Original file line number Diff line number Diff line change 1414 - 18
1515 os :
1616 - macOS-latest
17- - windows-latest
17+ # - windows-latest # I don't have a Windows machine to debug
1818 - ubuntu-latest
1919 runs-on : ${{ matrix.os }}
2020 steps :
Original file line number Diff line number Diff line change @@ -25,10 +25,6 @@ export const interfaceVersion = 2
2525
2626export type TsResolverOptions = SyncOpts & {
2727 alwaysTryTypes ?: boolean
28- /**
29- * @deprecated use `project` instead
30- */
31- directory ?: string [ ] | string
3228 project ?: string [ ] | string
3329 extensions ?: string [ ]
3430 packageFilter ?: ( pkg : Record < string , string > ) => Record < string , string >
@@ -257,18 +253,6 @@ function initMappers(options: TsResolverOptions) {
257253 return
258254 }
259255
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-
272256 const configPaths =
273257 typeof options . project === 'string'
274258 ? [ options . project ]
You can’t perform that action at this time.
0 commit comments