移除路径映射,只让Jest处理路径解析

This commit is contained in:
YHH
2025-08-08 15:57:56 +08:00
parent fc9bf816dd
commit e56278e4a6
2 changed files with 37 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": true,
"skipLibCheck": true
},
"include": [
"src/**/*",
"tests/**/*"
],
"exclude": [
"node_modules",
"bin",
"dist"
]
}