jsconfig.json 219 B

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