jsconfig.json 302 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "esnext",
  5. "baseUrl": "./",
  6. "jsx": "preserve",
  7. "moduleResolution": "node",
  8. "paths": {
  9. "@/*": [
  10. "src/*"
  11. ]
  12. },
  13. "lib": [
  14. "esnext",
  15. "dom",
  16. "dom.iterable",
  17. "scripthost"
  18. ]
  19. }
  20. }