mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-29 18:48:32 +08:00
39 lines
908 B
JSON
39 lines
908 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"ant-design-vue": ["components/index.ts"],
|
|
"ant-design-vue/es/*": ["components/*"],
|
|
"ant-design-vue/lib/*": ["components/*"],
|
|
"ant-design-vue/locale/*": ["components/locale/*"]
|
|
},
|
|
"lib": ["DOM", "ESNext"],
|
|
"strictNullChecks": false,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "vue",
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitAny": false,
|
|
"target": "es6",
|
|
"module": "esnext",
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
"importsNotUsedAsValues": "preserve",
|
|
"stripInternal": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib",
|
|
"es",
|
|
"dist",
|
|
"locale",
|
|
"scripts",
|
|
"**/__tests__/**/*",
|
|
"site/dist"
|
|
]
|
|
}
|