jsconfig.json 433 B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "baseUrl": "./",
  6. "moduleResolution": "node",
  7. "allowSyntheticDefaultImports": true,
  8. "paths": {
  9. "~/*": ["*"],
  10. "@/*": ["src/*"],
  11. "/#/*": ["types/*"],
  12. "@vab/*": ["library/*"],
  13. "@gp": ["library/plugins/vab"]
  14. },
  15. "lib": ["esnext", "dom", "dom.iterable", "scripthost"]
  16. },
  17. "exclude": ["node_modules", "dist"]
  18. }