tsconfig.json 566 B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "strict": true,
  4. "declaration": true,
  5. "skipLibCheck": true,
  6. "esModuleInterop": true,
  7. "jsx": "preserve",
  8. "jsxImportSource": "vue",
  9. "moduleResolution": "node",
  10. "strictNullChecks": false,
  11. "baseUrl": "./",
  12. "types": ["unplugin-vue-macros/macros-global", "node"],
  13. "paths": {
  14. "ant-design-x-vue": ["src/index.ts"],
  15. "ant-design-x-vue/*": ["src/*"],
  16. }
  17. },
  18. "vueCompilerOptions": {
  19. "plugins": ["unplugin-vue-macros/volar"]
  20. },
  21. "include": ["src/**/*", "docs/**/*", "internal/**/*"],
  22. }