我使用的是标准打字稿启动器,但在传输到便笺簿时,模块无法正常工作。例如,
import * as faker from 'faker';
export function creepNamer() {
let randomName = faker.name.findName();
return _.kebabCase(`${randomName}`);
}
给我一个错误,表明伪造者上不存在name
。当我检查faker
时,我发现undefined
。
有人知道为什么有些模块莫名其妙地无法操作/什么都不导出吗?
答案 0 :(得分:1)
示例tsconfig.json:
{
"compilerOptions": {
"module": "esnext",
"lib": ["esnext"],
"target": "es2017",
"moduleResolution": "Node",
"outDir": "dist",
"baseUrl": "src/",
"sourceMap": true,
"strict": true,
"experimentalDecorators": true,
"noImplicitReturns": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false
},
"include": [
"src/**/*.ts"
],
"exclude": [
"dist",
"node_modules"
]
}
是的,我等待您的回答。然后,我可以尝试为您提供更好的帮助。 问候〜