ant-design/tsconfig.json

32 lines
855 B
JSON
Raw Normal View History

2016-06-22 13:18:43 +08:00
{
"compilerOptions": {
"target": "es6",
"jsx": "react",
"jsxFactory": "React.createElement",
"jsxFragmentFactory": "React.Fragment",
"lib": ["dom", "es2017"],
"experimentalDecorators": true,
"baseUrl": "./",
"module": "esnext",
"moduleResolution": "Bundler",
"paths": {
"@@/*": [".dumi/tmp/*"],
"antd": ["components/index.ts"],
"antd/es/*": ["components/*"],
"antd/lib/*": ["components/*"],
"antd/locale/*": ["components/locale/*"]
},
"resolvePackageJsonExports": true,
"strict": true,
2016-10-24 16:30:38 +08:00
"strictNullChecks": true,
2017-11-22 12:16:53 +08:00
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"stripInternal": true,
"esModuleInterop": true,
"skipLibCheck": true
2016-06-22 16:09:45 +08:00
},
"include": [".dumirc.ts", "**/*"],
"exclude": ["node_modules", "lib", "es"]
}