官网 管理后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

jsconfig.json 338B

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