tsconfig.json 481 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "module": "NodeNext",
  4. "sourceMap": true,
  5. "jsx": "react-jsx",
  6. "paths": {
  7. "@plugins/*": [
  8. "./fixtures-path-alias/*"
  9. ],
  10. "@other/ts-aliased": [
  11. "./fixtures-path-alias/ts-aliased/index.ts"
  12. ],
  13. "@other/js-aliased": [
  14. "./fixtures-path-alias/js-aliased/index.js"
  15. ],
  16. "@esm-plugins/*": [
  17. "./fixtures-esm-path-alias/*"
  18. ]
  19. }
  20. },
  21. "exclude": [
  22. "node_modules"
  23. ]
  24. }