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.

46 lines
1.1 KiB

  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "Node",
  6. "strict": false,
  7. "jsx": "preserve",
  8. "importHelpers": true,
  9. "experimentalDecorators": true,
  10. "strictFunctionTypes": false,
  11. "skipLibCheck": true,
  12. "esModuleInterop": true,
  13. "isolatedModules": true,
  14. "allowSyntheticDefaultImports": true,
  15. "forceConsistentCasingInFileNames": true,
  16. "sourceMap": true,
  17. "baseUrl": ".",
  18. "allowJs": false,
  19. "resolveJsonModule": true,
  20. "lib": ["dom", "esnext"],
  21. "incremental": true,
  22. "paths": {
  23. "/@/*": ["src/*"],
  24. "@build/*": ["build/*"],
  25. "/#/*": ["types/*"]
  26. },
  27. "types": [
  28. "node",
  29. "vite/client",
  30. "element-plus/global",
  31. "@pureadmin/table/volar",
  32. "unplugin-vue-define-options",
  33. "@pureadmin/descriptions/volar"
  34. ],
  35. "typeRoots": ["./node_modules/@types/", "./types"]
  36. },
  37. "include": [
  38. "src/**/*.ts",
  39. "src/**/*.tsx",
  40. "src/**/*.vue",
  41. "types/*.d.ts",
  42. "mock/*.ts",
  43. "vite.config.ts"
  44. ],
  45. "exclude": ["node_modules", "dist", "**/*.js"]
  46. }