在我的 NodeJS/Typescript 项目中,我创建了一个脚本database-init.script.ts
,我运行该脚本以使用示例数据初始化数据库。
我的 package.json 看起来像这样:
{
"name": "myproject",
....
"scripts": {
...
"mongodb-setup": "tsc ./scripts/mongodb-setup.ts && node ./scripts/mongo-setup.js"
}
问题是脚本导入了一些本身使用 tsconfigpaths
快捷方式的文件。例如一些文件有
import {AccountSchema} from '@schemas/account.schema'
...
我的脚本失败了,因为它无法识别这些。它给了我
error TS2307: Cannot find module '@schemas/account.schema' or its corresponding type declarations.
1 import {AccountSchema} from '@schemas/account.schema";
如何在不编译整个项目的情况下获取脚本来识别 tsconfig 定义的路径?