tsconfig.json 617 B

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