ant-design/tsconfig.json

22 lines
507 B
JSON
Raw Normal View History

2016-06-22 13:18:43 +08:00
{
"compilerOptions": {
"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,
"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,
"target": "es6",
"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"]
}