jsconfig.json 361 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "jsx": "preserve",
  7. "baseUrl": "./",
  8. "lib": ["esnext", "dom"],
  9. "paths": {
  10. "@/*": ["src/*"]
  11. }
  12. },
  13. "exclude": ["node_modules", "dist"],
  14. // "vueCompilerOptions": {
  15. // "experimentalShamefullySupportOptionsApi": false
  16. // }
  17. }