ant-design/tsconfig.json
afc163 774195782b
feat: bump antd-tools (#45101)
Co-authored-by: kiner-tang(文辉) <1127031143@qq.com>
2023-09-26 17:32:05 +08:00

31 lines
835 B
JSON

{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@@/*": [".dumi/tmp/*"],
"antd": ["components/index.ts"],
"antd/es/*": ["components/*"],
"antd/lib/*": ["components/*"],
"antd/locale/*": ["components/locale/*"]
},
"strictNullChecks": true,
"module": "esnext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"experimentalDecorators": true,
"jsx": "react",
"jsxFactory": "React.createElement",
"jsxFragmentFactory": "React.Fragment",
"noUnusedParameters": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"target": "es6",
"lib": ["dom", "es2017"],
"skipLibCheck": true,
"stripInternal": true,
"resolvePackageJsonExports": true
},
"include": [".dumirc.ts", "**/*"],
"exclude": ["node_modules", "lib", "es"]
}