ant-design/tsconfig.json

26 lines
640 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,
"module": "esnext",
2016-06-22 13:18:43 +08:00
"moduleResolution": "node",
2019-01-12 22:19:38 +08:00
"esModuleInterop": true,
"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,
"target": "es6",
"lib": ["dom", "es2017"],
"skipLibCheck": true,
"stripInternal": true
2016-06-22 16:09:45 +08:00
},
"exclude": ["node_modules", "lib", "es"]
}