tsconfig.json 588 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "Node",
  6. "strict": false,
  7. "esModuleInterop": true,
  8. "allowSyntheticDefaultImports": true,
  9. "lib": ["ESNext", "DOM"],
  10. "types": ["vite/client", "@vue/runtime-dom", "@vue/runtime-core"],
  11. "skipLibCheck": true,
  12. "noEmit": true,
  13. "ignoreDeprecations": "6.0",
  14. "baseUrl": "./",
  15. "paths": {
  16. "@": ["src"],
  17. "@/*": ["src/*"]
  18. }
  19. },
  20. "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
  21. "exclude": ["node_modules", "dist"]
  22. }