jsconfig.json 342 B

123456789101112131415161718192021
  1. {
  2. "compilerOptions": {
  3. "allowJs": true,
  4. "target": "es5",
  5. "module": "esnext",
  6. "baseUrl": "./",
  7. "moduleResolution": "bundler",
  8. "paths": {
  9. "@/*": [
  10. "src/*"
  11. ]
  12. },
  13. "lib": [
  14. "esnext",
  15. "dom",
  16. "dom.iterable",
  17. "scripthost"
  18. ]
  19. },
  20. "exclude": ["node_modules", "dist"]
  21. }