jsconfig.json 223 B

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