mirror of
https://gitee.com/antv/g6.git
synced 2024-12-03 20:28:36 +08:00
28 lines
485 B
JSON
28 lines
485 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"
|
||
|
]
|
||
|
}
|