2016-06-22 13:18:43 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-10-17 10:24:34 +08:00
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
2023-09-17 21:52:01 +08:00
|
|
|
"@@/*": [".dumi/tmp/*"],
|
2022-12-31 22:12:30 +08:00
|
|
|
"antd": ["components/index.ts"],
|
2022-10-11 15:47:03 +08:00
|
|
|
"antd/es/*": ["components/*"],
|
2022-10-26 14:38:54 +08:00
|
|
|
"antd/lib/*": ["components/*"],
|
|
|
|
"antd/locale/*": ["components/locale/*"]
|
2019-10-17 10:24:34 +08:00
|
|
|
},
|
2016-10-24 16:30:38 +08:00
|
|
|
"strictNullChecks": true,
|
2021-06-15 14:51:11 +08:00
|
|
|
"module": "esnext",
|
2023-09-26 17:32:05 +08:00
|
|
|
"moduleResolution": "Bundler",
|
2019-01-12 22:19:38 +08:00
|
|
|
"esModuleInterop": true,
|
2017-01-26 11:23:54 +08:00
|
|
|
"experimentalDecorators": true,
|
2022-06-10 20:35:28 +08:00
|
|
|
"jsx": "react",
|
|
|
|
"jsxFactory": "React.createElement",
|
|
|
|
"jsxFragmentFactory": "React.Fragment",
|
2017-05-31 15:48:11 +08:00
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noUnusedLocals": true,
|
2017-11-22 12:16:53 +08:00
|
|
|
"noImplicitAny": true,
|
2023-06-07 21:59:21 +08:00
|
|
|
"target": "es6",
|
2019-11-16 11:39:13 +08:00
|
|
|
"lib": ["dom", "es2017"],
|
2022-09-30 14:26:41 +08:00
|
|
|
"skipLibCheck": true,
|
2023-09-26 17:32:05 +08:00
|
|
|
"stripInternal": true,
|
|
|
|
"resolvePackageJsonExports": true
|
2016-06-22 16:09:45 +08:00
|
|
|
},
|
2023-09-17 21:52:01 +08:00
|
|
|
"include": [".dumirc.ts", "**/*"],
|
2022-11-30 11:05:41 +08:00
|
|
|
"exclude": ["node_modules", "lib", "es"]
|
2016-09-09 13:55:21 +08:00
|
|
|
}
|