jsconfig.json 216 B

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