Examples of Vlocity/SF LWC components (in various states of working)
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.

59 lines
1.8 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. {
  2. "compilerOptions": {
  3. "experimentalDecorators": true,
  4. "baseUrl": ".",
  5. "paths": {
  6. "c/customLayout": [
  7. "customLayout/customLayout.js"
  8. ],
  9. "c/helloWorld": [
  10. "helloWorld/helloWorld.js"
  11. ],
  12. "c/myAccordionComponent": [
  13. "myAccordionComponent/myAccordionComponent.js"
  14. ],
  15. "c/myActionComponent": [
  16. "myActionComponent/myActionComponent.js"
  17. ],
  18. "c/myCustomComponent": [
  19. "myCustomComponent/myCustomComponent.js"
  20. ],
  21. "c/myOmniComponentInBaseClass": [
  22. "myOmniComponentInBaseClass/myOmniComponentInBaseClass.js"
  23. ],
  24. "c/myTextComponent": [
  25. "myTextComponent/myTextComponent.js"
  26. ],
  27. "c/myCardComponent": [
  28. "myCardComponent/myCardComponent.js"
  29. ],
  30. "c/myCssComponent": [
  31. "myCssComponent/myCssComponent.js"
  32. ],
  33. "c/myCustomComponentWithNavButtons": [
  34. "myCustomComponentWithNavButtons/myCustomComponentWithNavButtons.js"
  35. ],
  36. "c/myCheckboxComponent": [
  37. "myCheckboxComponent/myCheckboxComponent.js"
  38. ],
  39. "c/checkboxComponent": [
  40. "checkboxComponent/checkboxComponent.js"
  41. ],
  42. "c/fileUpload": [
  43. "fileUpload/fileUpload.js"
  44. ],
  45. "c/typeaheadAddressComponent": [
  46. "typeaheadAddressComponent/typeaheadAddressComponent.js"
  47. ]
  48. }
  49. },
  50. "include": [
  51. "**/*",
  52. "../../../../.sfdx/typings/lwc/**/*.d.ts"
  53. ],
  54. "typeAcquisition": {
  55. "include": [
  56. "jest"
  57. ]
  58. }
  59. }