mirror of
https://gitee.com/antv/g6.git
synced 2024-12-02 19:58:46 +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"
|
|
]
|
|
}
|