Files
DDDMicroFrontend/front-end/app-shared/tsconfig.json
编码猿 af2b3badd0 提交
2025-09-18 02:51:28 +08:00

40 lines
793 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"**/*.test.ts"
],
"compilerOptions": {
"moduleResolution": "bundler",
"verbatimModuleSyntax": false,
"target": "ES2020",
"module": "ESNext",
// 模块导出优化
"resolveJsonModule": true,
// 允许导入JSON文件
"isolatedModules": true,
// 确保每个文件可被独立转译Vite等工具要求
"skipLibCheck": true,
// 跳过库类型检查,加快编译速度
"paths": {
"@/*": [
"./src/app/*"
],
"@shared/*": [
"./src/shared/*"
],
"@features/*": [
"./src/features/*"
],
"@domains/*": [
"./src/domains/*"
]
}
}
}