jsconfig.json 509 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "lib": ["esnext", "dom", "dom.iterable", "scripthost"],
  6. "jsx": "preserve",
  7. "allowSyntheticDefaultImports": true,
  8. "esModuleInterop": true,
  9. "experimentalDecorators": true,
  10. "skipLibCheck": true,
  11. "forceConsistentCasingInFileNames": true,
  12. "baseUrl": "./",
  13. "types": ["vite/client"],
  14. "paths": {
  15. "@/*": ["src/*"]
  16. },
  17. "moduleResolution": "node"
  18. },
  19. "exclude": ["node_modules", "dist"]
  20. }