jsconfig.json 305 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "target": "ES6",
  4. "module": "commonjs",
  5. "allowSyntheticDefaultImports": true,
  6. "baseUrl": "./",
  7. "jsx": "preserve",
  8. "types": [
  9. ],
  10. "typeRoots": [],
  11. "paths": {
  12. "@/*": [
  13. "src/*"
  14. ]
  15. }
  16. },
  17. "exclude": [
  18. "node_modules"
  19. ]
  20. }