mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-23 18:50:06 +08:00
26b9e1f887
* introduce codesandbox ci * set skipLibCheck temporarilly * remove packtracker temporarilly * debug env
22 lines
507 B
JSON
22 lines
507 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"antd": ["components/index.tsx"],
|
|
"antd/es/*": ["components/*"]
|
|
},
|
|
"strictNullChecks": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "preserve",
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitAny": true,
|
|
"target": "es6",
|
|
"lib": ["dom", "es2017"],
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["node_modules", "lib", "es"]
|
|
}
|