jsconfig.json 303 B

1234567891011121314151617181920
  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. }