2016-06-22 13:18:43 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-10-17 10:24:34 +08:00
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"antd": ["components/index.tsx"],
|
|
|
|
"antd/es/*": ["components/*"]
|
|
|
|
},
|
2016-10-24 16:30:38 +08:00
|
|
|
"strictNullChecks": true,
|
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,
|
2016-06-22 16:09:45 +08:00
|
|
|
"jsx": "preserve",
|
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"],
|
|
|
|
"skipLibCheck": true
|
2016-06-22 16:09:45 +08:00
|
|
|
},
|
2018-12-07 16:17:45 +08:00
|
|
|
"exclude": ["node_modules", "lib", "es"]
|
2016-09-09 13:55:21 +08:00
|
|
|
}
|