mirror of
https://github.com/bolucat/Archive.git
synced 2025-12-24 13:28:37 +08:00
16 lines
295 B
JSON
16 lines
295 B
JSON
{
|
|
// 支持 @ 的别名解析
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"target": "ES6",
|
|
"module": "commonjs",
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "preserve"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|