tsconfig.json 867 B

123456789101112131415161718192021222324252627282930313233343536373839
  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": true,
  19. "resolveJsonModule": true,
  20. "lib": ["dom", "esnext"],
  21. "paths": {
  22. "@/*": ["src/*"],
  23. "@build/*": ["build/*"]
  24. },
  25. "types": [
  26. "node",
  27. "vite/client"
  28. ]
  29. },
  30. "include": [
  31. "mock/*.ts",
  32. "src/**/*.ts",
  33. "src/**/*.tsx",
  34. "src/**/*.vue",
  35. "types/*.d.ts",
  36. "vite.config.ts"
  37. ],
  38. "exclude": ["dist", "**/*.js", "node_modules"]
  39. }