jsconfig.json 223 B

123456789101112
  1. {
  2. "compilerOptions": {
  3. "target": "es2017",
  4. "allowSyntheticDefaultImports": false,
  5. "baseUrl": "./",
  6. "paths": {
  7. "@/*": ["src/*"]
  8. },
  9. "allowJs": true
  10. },
  11. "exclude": ["node_modules", "dist"]
  12. }