jsconfig.json 241 B

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