You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
908 B
39 lines
908 B
{
|
|
"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"
|
|
]
|
|
}
|