jsconfig.json 255 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "paths": {
  5. "@/*": [
  6. "src/*"
  7. ]
  8. },
  9. "allowSyntheticDefaultImports": true
  10. },
  11. "exclude": [
  12. "node_modules",
  13. "dist"
  14. ]
  15. }