|
|
|
@ -1,7 +1,11 @@
|
|
|
|
{
|
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"target": "es5",
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"lib": [
|
|
|
|
|
|
|
|
"dom",
|
|
|
|
|
|
|
|
"dom.iterable",
|
|
|
|
|
|
|
|
"esnext"
|
|
|
|
|
|
|
|
],
|
|
|
|
"allowJs": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"strict": false,
|
|
|
|
"strict": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
@ -14,12 +18,23 @@
|
|
|
|
"isolatedModules": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"jsx": "preserve",
|
|
|
|
"incremental": true,
|
|
|
|
"incremental": true,
|
|
|
|
"baseUrl": "./src",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./*"]
|
|
|
|
"@/*": [
|
|
|
|
|
|
|
|
"src/*"
|
|
|
|
|
|
|
|
]
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"rootDirs": ["common/src/", "arco-design-pro-cra/src/", "arco-design-pro-next/src/"]
|
|
|
|
"rootDirs": [
|
|
|
|
|
|
|
|
"common/src/",
|
|
|
|
|
|
|
|
"arco-design-pro-cra/src/",
|
|
|
|
|
|
|
|
"arco-design-pro-next/src/"
|
|
|
|
|
|
|
|
]
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
|
|
"include": [
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
"**/*.ts",
|
|
|
|
|
|
|
|
"**/*.tsx"
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
"exclude": [
|
|
|
|
|
|
|
|
"node_modules"
|
|
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|