mirror of
https://gitee.com/ineo6/homebrew-install.git
synced 2025-04-06 03:58:05 +08:00
30 lines
510 B
JSON
30 lines
510 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"baseUrl": "./",
|
|
"strict": true,
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@@/*": ["src/.umi/*"]
|
|
},
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib",
|
|
"es",
|
|
"dist",
|
|
"typings",
|
|
"**/__test__",
|
|
"test",
|
|
"docs",
|
|
"tests"
|
|
]
|
|
}
|