jsconfig.json 268 B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "jsx": "preserve",
  7. "baseUrl": "./",
  8. "lib": ["esnext", "dom"],
  9. "paths": {
  10. "@/*": ["src/*"]
  11. }
  12. },
  13. "exclude": ["node_modules", "dist"]
  14. }