Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
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.

37 lines
844 B

  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": true,
  6. "jsx": "preserve",
  7. "importHelpers": true,
  8. "moduleResolution": "node",
  9. "experimentalDecorators": true,
  10. "esModuleInterop": true,
  11. "allowSyntheticDefaultImports": true,
  12. "sourceMap": true,
  13. "baseUrl": ".",
  14. "types": [
  15. "webpack-env"
  16. ],
  17. "lib": [
  18. "esnext",
  19. "dom",
  20. "dom.iterable",
  21. "scripthost"
  22. ],
  23. "paths": {
  24. "@/*": [
  25. "resources/js/*"
  26. ],
  27. "@components/*": [
  28. "resources/js/components/*"
  29. ],
  30. },
  31. },
  32. "include": [
  33. "resources/js/**/*"
  34. ],
  35. "exclude": [
  36. "node_modules"
  37. ]
  38. }