You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
440 B
JSON
14 lines
440 B
JSON
|
2 weeks ago
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ESNext",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Node", // 关键:使用 Node 模块解析规则
|
||
|
|
"baseUrl": ".", // 基础路径为项目根目录
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["src/*"] // 配置 @ 别名指向 src 目录
|
||
|
|
},
|
||
|
|
"esModuleInterop": true // 允许默认导入
|
||
|
|
},
|
||
|
|
"include": ["src/**/*"], // 包含 src 目录下的所有文件
|
||
|
|
"exclude": ["node_modules"]
|
||
|
|
}
|