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.

26 lines
599 B

4 years ago
  1. {
  2. "compilerOptions": {
  3. "experimentalDecorators": true,
  4. "baseUrl": ".",
  5. "paths": {
  6. "c/helloWorld": [
  7. "helloWorld/helloWorld.js"
  8. ],
  9. "c/myCustomComponent": [
  10. "myCustomComponent/myCustomComponent.js"
  11. ],
  12. "c/myTextComponent": [
  13. "myTextComponent/myTextComponent.js"
  14. ]
  15. }
  16. },
  17. "include": [
  18. "**/*",
  19. "../../../../.sfdx/typings/lwc/**/*.d.ts"
  20. ],
  21. "typeAcquisition": {
  22. "include": [
  23. "jest"
  24. ]
  25. }
  26. }