2016-06-22 13:18:43 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-10-17 10:24:34 +08:00
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"antd": ["components/index.tsx"],
|
2022-10-11 15:47:03 +08:00
|
|
|
"antd/es/*": ["components/*"],
|
|
|
|
"antd/lib/*": ["components/*"]
|
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",
|
2016-06-22 13:18:43 +08:00
|
|
|
"moduleResolution": "node",
|
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,
|
2017-05-08 16:40:12 +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,
|
|
|
|
"stripInternal": true
|
2016-06-22 16:09:45 +08:00
|
|
|
},
|
2020-04-22 13:37:23 +08:00
|
|
|
"exclude": ["node_modules", "lib", "es"]
|
2016-09-09 13:55:21 +08:00
|
|
|
}
|