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