jsconfig.json 224 B

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