123456789101112131415161718192021222324252627 |
- {
- "compilerOptions": {
- "strict": true,
- "declaration": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "emitDeclarationOnly": true,
- "declarationDir": "./dist/typings",
- "lib": ["esnext", "dom"],
- "jsx": "preserve",
- "jsxImportSource": "vue",
- "moduleResolution": "node",
- "strictNullChecks": false,
- "baseUrl": "./",
- "types": ["unplugin-vue-macros/macros-global", "node"],
- "paths": {
- "ant-design-x-vue": ["src/index.ts"],
- "ant-design-x-vue/*": ["src/*"],
- "ant-design-x-vue/resolver/*": ["src/resolver/*"],
- }
- },
- "vueCompilerOptions": {
- "plugins": ["unplugin-vue-macros/volar"]
- },
- "include": ["src/index.ts", "src/x-provider/**/*", "src/theme/**/*", "src/bubble/**/*"],
- "exclude": ["src/**/__tests__/**/*"]
- }
|