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
feat: support tsconfig paths and package-relative imports [sc-22644] (#1006)
* feat: async dependency collector
* refactor: switch to a sync implementation to avoid changes to constructs
* refactor: remove unnecessary try/catch
* feat: look up original TS sources when dealing with folders as modules
* fix: include package.json when resolving module folders
* feat: let parser know how tsconfig paths were resolved for a file
This optionally allows the parser to massage the file structure into an
alternate output format.
* feat: add jsconfig.json support
* fix: supported module check was accidentally negated
* feat: bundle relevant tsconfig/jsconfig.json files
These files are currently not utilized by the backend but they might be
in the near future.
* feat: cache all source files and set up unique IDs for later dedup purposes
* feat: add tests for tsconfig behavior
* feat: more complete support for imports with extensions
* chore: remove unused code
* fix: remove mistakenly implemented useless package-relative path support
* fix: remove unused variable
* fix: remove unused variable
* feat: cache common dependencies within a Session
Shares a common Parser (or Parsers, one per runtime) within a Session and
avoids unnecessary AST walks for filePaths the parser has already seen when
parsing other entrypoints.
Share PackageFilesResolver so that its file caches can be shared within the
same Parser (which is now also shared within the Session), and cache
its result per filePath to avoid duplicate work.
Helps use cases where there are multiple entrypoints that share
common libraries.
* fix: remove allowImportingTsExtensions support
Does not play well during a nested lookup when we're looking up a path that
we've already resolved to a candidate with a .ts extension earlier in the
process. Not a super useful feature anyway.
* chore: empty out package-lock.json in fixtures, keep file
* feat: support `index.json` which apparently works
Copy file name to clipboardexpand all lines: packages/cli/src/services/check-parser/__tests__/check-parser-fixtures/tsconfig-paths-sample-project/lib1/package-lock.json
Copy file name to clipboardexpand all lines: packages/cli/src/services/check-parser/__tests__/check-parser-fixtures/tsconfig-paths-sample-project/package-lock.json
0 commit comments