jsconfig.json 322 B

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