tsconfig.json 408 B

123456789101112131415161718192021
  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. }
  17. },
  18. "exclude": [
  19. "node_modules"
  20. ]
  21. }