TsLint/TsConfig:模块“共享”未在 package.json 中列为依赖项

Posted

技术标签:

【中文标题】TsLint/TsConfig:模块“共享”未在 package.json 中列为依赖项【英文标题】:TsLint/TsConfig: Module 'shared' is not listed as dependency in package.json 【发布时间】:2021-08-16 18:48:28 【问题描述】:

我正在尝试创建以下 monorepo 结构:

node_modules
project-1
  | tsconfig.json
  | src
project-2
  | tsconfig.json
  | src
shared
  | src

我希望项目 1 和 2 都能够从共享中导入。在两个 tsconfigs 中,我都添加了路径 'shared': '[../shared]',这使我可以直接从共享中导入代码。然而,Tslint 向Module 'shared' is not listed as dependency in package.json 抱怨。关于如何让 linter 在不禁用 tslint 规则的情况下识别两个项目中的 shared 文件夹的任何想法?

【问题讨论】:

【参考方案1】:

tslint.json 中,您可以在规则旁边指定文件夹白名单:

"no-implicit-dependencies": [true, ["app", "environments", "shared"]],

【讨论】:

以上是关于TsLint/TsConfig:模块“共享”未在 package.json 中列为依赖项的主要内容,如果未能解决你的问题,请参考以下文章

未在服务中获取共享首选项的更新值

Chrome 未在子域之间共享 cookie

Notes 应用程序未在 ios uiactivityviewcontroller 的共享选项中列出

LIBPATHS 未在 Makefile 中使用,找不到共享对象

Nodejs闭包变量未在模块中更新

从 MongoClient.connect() 导出未在其他模块中读取