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.

43 lines
1.0 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. "paths": {
  22. "@/*": ["src/*"],
  23. "@build/*": ["build/*"]
  24. },
  25. "types": [
  26. "node",
  27. "vite/client",
  28. "element-plus/global",
  29. "@pureadmin/table/volar",
  30. "@pureadmin/descriptions/volar"
  31. ],
  32. "typeRoots": ["./types", "./node_modules/@types/"]
  33. },
  34. "include": [
  35. "mock/*.ts",
  36. "src/**/*.ts",
  37. "src/**/*.tsx",
  38. "src/**/*.vue",
  39. "types/*.d.ts",
  40. "vite.config.ts"
  41. ],
  42. "exclude": ["dist", "**/*.js", "node_modules"]
  43. }