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.

35 lines
938 B

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/myActionComponent": [
  13. "myActionComponent/myActionComponent.js"
  14. ],
  15. "c/myCustomComponent": [
  16. "myCustomComponent/myCustomComponent.js"
  17. ],
  18. "c/myOmniComponentInBaseClass": [
  19. "myOmniComponentInBaseClass/myOmniComponentInBaseClass.js"
  20. ],
  21. "c/myTextComponent": [
  22. "myTextComponent/myTextComponent.js"
  23. ]
  24. }
  25. },
  26. "include": [
  27. "**/*",
  28. "../../../../.sfdx/typings/lwc/**/*.d.ts"
  29. ],
  30. "typeAcquisition": {
  31. "include": [
  32. "jest"
  33. ]
  34. }
  35. }