我尝试在我的TypeScript项目中使用笑话。我已经在official project page的“入门”部分中使用指令设置了ts-jest。现在,我尝试在终端中使用命令npx jest
使它工作。但是我的每个* .spec.ts文件都遇到下一个错误:
error TS6053: File '/path_to_my_project/src/*.ts' not found.
如果有帮助,我有下一个项目结构
project
|dist
|src
|main.ts
|main.spec.ts
jest.config.js
tsconfig.json
我的ts-jest配置:
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node'
};
我的tsconfig
{
"files": [
"src/*.ts"
],
"compilerOptions": {
"outDir": "dist",
"target": "es6",
"noEmitOnError": true,
"removeComments": true,
"noImplicitAny": true,
"alwaysStrict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"strictNullChecks": true,
}
}