我的新 NX 工作区中有一个基本设置
- /apps/my-app(节点类型)
- /libs/some-lib(节点类型)
两者都使用 nx cli 命令创建:即nx g @nrwl/node:lib some-lib --simpleModuleName=true
对于库,我想使用环境声明文件(.d.ts)。我在/libs/some-lib/src/types/index.d.ts添加了一个,内容:
declare type MyCustomType = any;
据我了解,该文件是根据/libs/some-lib/tsconfig.lib.json文件处理的,但我还在 /libs/some-lib/tsconfig.json 中添加了对该文件的直接引用:
{
"extends": "../../../tsconfig.base.json",
"files": [
"src/types/index.d.ts"
],
"include": [
"src/types/**/*.d.ts"
],
"references": [
{
"path": "./tsconfig.lib.json"
},
{
"path": "./tsconfig.spec.json"
}
]
}
当我在 lib 的代码中使用这个文件时,我的 IDE 很高兴,例如: /libs/some-lib/src/lib/file.ts
export const x: MyCustomType = 1;
但是,如果我想将此变量导入my-app并运行它(nx serve my-app),
import { x } from '@my-workspace/some-lib';
我从编译器得到一个错误:
ERROR in libs/some-lib/src/lib/file.ts
TS2304: Cannot find name "MyCustomType".
所以我的问题是,有没有办法在库中使用环境声明文件,并且在运行从该库导入抽象的应用程序时不会出错?
我可以在根文件夹中创建共享类型:*types/myCustomType.d.ts",然后将其包含在应用程序和库的 tsconfigs in files 属性中,但我不想避免它并使类型接近代码。
另一个有效但丑陋的解决方案是在 my-app 的 tsconfig 文件中添加对库的附加引用:
{
"path": "../../libs/some-lib/tsconfig.json"
}
结果/apps/my-app/tsconfig.json:
{
"extends": "../../tsconfig.base.json",
"files": [],
"include": [],
"references": [
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.spec.json"
},
{
"path": "../../libs/node/schedulers/tsconfig.json"
}
]
}
或者创建一个tsconfig.json桶:/libs/tsconfig.json ...并在那里引用相关库。my-app 的 tsconfig 文件只需要引用这个单个文件。