jsconfig.json 544 B

12345678910111213141516171819
  1. {
  2. "baseUrl": ".",
  3. "include": ["src/**/*", "src_product/**/*", "src_custom/**/*"],
  4. "exclude": ["node_modules", "**/_import-components/*"],
  5. "compilerOptions": {
  6. "checkJs": true,
  7. "baseUrl": ".",
  8. "target": "esnext",
  9. "module": "esnext",
  10. "moduleResolution": "node",
  11. "paths": {
  12. "@/*": ["src/*"],
  13. "@product/*": ["src_product/*"],
  14. "@custom/*": ["src_custom/*"],
  15. "@external/*": ["lib-external/*"],
  16. "@": ["./index.js", "./index.json", "./index.vue", "./index.scss", "./index.css"]
  17. }
  18. }
  19. }