jsconfig.js 195 B

1234567891011
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "paths": {
  5. "@/*": ["src/*"]
  6. },
  7. "allowSyntheticDefaultImports": true
  8. },
  9. "include": ["src/**/*"],
  10. "exclude": ["node_modules"]
  11. }